Conan Client: Difference between revisions
Jump to navigation
Jump to search
Line 41: | Line 41: | ||
* [https://github.com/memsharded/hello Conan Hello World] | * [https://github.com/memsharded/hello Conan Hello World] | ||
* [https://conan.io/downloads.html Downloads] | * [https://conan.io/downloads.html Downloads] | ||
* [[Conan]] | |||
| valign="top" | | | valign="top" | |
Revision as of 07:35, 24 July 2021
Linux
apt install python3-all python3-pip python3-venv
python3 -m venv ~/.venv/conan
source ~/.venv/conan/bin/activate
python -m pip install -U pip
pip install conan
conan --help
Windows
run as administrator 1. Press ⊞ + R 2. Type in cmd 3. Press Ctrl + Shift + Enter 4. Choose Yes and Press Enter
python -m pip install virtualenv
python -m venv ~\.venv\conan
~\.venv\conan\Scripts\activate
python -m pip install -U pip
pip install conan
conan --help
Knowledge
git clone https://github.com/conan-io/conan.git conan;\ cd conan; python -m pip install -e . pip install conan --upgrade
References
|