Conan Add Remote [better] Jun 2026
# Add private remote with high priority conan remote add corp https://artifacts.corp.com/artifactory/api/conan/conan-local --insert=0
If your server URL changes, you don't need to delete and re-add it: conan remote update Remove a Remote conan add remote
While is the go-to for open-source libraries, adding your own remotes offers several professional advantages: # Add private remote with high priority conan
Adding a remote is done via the command line. The syntax registers a name for the remote and the URL where the server is hosted. If a package exists in multiple remotes, Conan
Conan searches remotes in the order they appear in your list. If a package exists in multiple remotes, Conan will use the one found in the remote that appears first.
conan remote add company-repo https://conan.mycompany.com
Adding a remote in Conan is a fundamental skill for any C++ developer moving towards modern package management. Whether you are pulling public libraries from Conan Center or sharing internal code via Artifactory or JFrog, the conan remote add command is your gateway to a connected, efficient build pipeline.