Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Conan version installed with pip

Tags:

pip

conan

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?

like image 613
user3751086 Avatar asked Apr 19 '26 14:04

user3751086


1 Answers

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"
like image 97
Taky Avatar answered Apr 22 '26 09:04

Taky