Reputation: 2703
I'm working in an organization with no internet connection. What is the correct way to "import" Conan packages into the organization? Assume I have a way just to transfer files into the organization's network.
Upvotes: 1
Views: 213
Reputation: 3887
The best approach is running an Artifactory instance. You can download it from Conan Download page. It's free, and can be used for business without restrictions.
Why is it the best choice? As you need to share your packages in your company, you need to centralize its distribution. Conan packages are not a simple zip file which can be sent by email (ugly), they have ID, checksum validation, revision, version ... So Artifactory organizes your packages and distribute them correctly.
But if you can't run Artifactory, or your need is too small for it, you still can try Conan Server. It works like a simple server, and is very feature limited, but good enough for small experiments.
Upvotes: 2