Skip to content

Commit

Permalink
be explicit about installing the latest 1.x version of conan
Browse files Browse the repository at this point in the history
Too many people stumble across this challeng on how to install conan without
jumping to the latest 2.x version, figuring out how to install the latest 1.x
version of conan, etc.  Until we upgrade BSK to conan 2.x, I am
going to just be explicit here.
  • Loading branch information
schaubh committed Jan 5, 2024
1 parent f89fb8e commit 5be0790
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/source/Install/installOnLinux.rst
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ Dependencies

#. Ensure ``wheel`` is installed and install ``conan`` using pip, an example is below::

(venv) $ pip3 install wheel conan
(venv) $ pip3 install wheel 'conan<2.0'

The conan repositories information is automatically setup by ``conanfile.py``.

Expand Down
2 changes: 1 addition & 1 deletion docs/source/Install/installOnMacOS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ Installing required python support packages
- Basilisk uses ``conan`` for package managing. In order to do so, users
must ensure ``wheel`` is installed and install ``conan``::

(.venv) $ pip3 install wheel conan
(.venv) $ pip3 install wheel 'conan<2.0'

The conan repositories information is automatically setup by ``conanfile.py``.

Expand Down
2 changes: 1 addition & 1 deletion docs/source/Install/installOnWindows.rst
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ Installing required python support packages
- Basilisk uses conan for package managing. In order to do so, users
must ensure ``wheel`` is installed and install ``conan``::

(venv) $ pip install wheel conan
(venv) $ pip install wheel 'conan<2.0'

The conan repositories information is automatically setup by ``conanfile.py``.

Expand Down

0 comments on commit 5be0790

Please sign in to comment.