| Problem | Likely Cause | Solution | |---------|--------------|----------| | ERROR: Remote 'my_remote' not found | Remote name mistyped or not added. | Run conan remote list to check. | | 404 Not Found | Wrong URL (missing /v2 or wrong API endpoint). | Verify the server’s Conan repository path. | | SSL: CERTIFICATE_VERIFY_FAILED | Self-signed or invalid certificate. | Add certificate to trust store, or (temporarily) use --verify-ssl=False . | | Package is fetched from wrong remote | Priority order issue. | Use --insert 0 or re-add with higher priority. |
Remote priority matters: Conan searches remotes in the order they are listed (from highest to lowest priority). To make your company remote take precedence over Conan Center: conan add remote
What are you targeting (Artifactory, Nexus, or Conan server)? | Problem | Likely Cause | Solution |
This indicates that the remote server uses an untrusted or self-signed SSL/TLS certificate, causing Conan to abort the network connection for security reasons. | Verify the server’s Conan repository path
To add a remote to the Conan package manager, use the following command structure: conan remote add [verify_ssl] Use code with caution. Copied to clipboard Command Breakdown
conan remote add <remote_name> <remote_url> [--insert <index>]