Search code examples
pipconan

Conan version installed with pip


As conan documentation describes, the recommended way to install conan is using pip: https://conan.io/downloads.html. If I do so, I get conan v 1.41. However on the official conan repo I see recipes created for conan >= 1.47, for example OpenSSL recipe file contains required_conan_version = ">=1.47.0" How do I get the latest conan version?


Solution

  • For me it automatically installs a far newer version:

    jenkins@fmdev04:/data/jenkins_home/workspace$ pip install conan
    Collecting conan
      Downloading conan-1.58.0.tar.gz (779 kB)
         |████████████████████████████████| 779 kB 8.7 MB/s
    

    You may want to try updating pip and Python on the computer.

    You may also try:

    pip install --force-reinstall -v "conan==1.47.0"