Conan Client: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
No edit summary
Line 34: Line 34:
| valign="top" |
| valign="top" |
* [https://medium.com/@hoan.nguyen.it/how-did-g1gc-tuning-flags-affect-our-back-end-web-app-c121d38dfe56 Affected Performance of First Garbage Collector (G1GC)]
* [https://medium.com/@hoan.nguyen.it/how-did-g1gc-tuning-flags-affect-our-back-end-web-app-c121d38dfe56 Affected Performance of First Garbage Collector (G1GC)]
* [https://docs.conan.io/en/latest/getting_started.html An MD5 hash calculator using the Poco Libraries]
* [https://blog.conan.io/2018/06/11/Transparent-CMake-Integration.html Conan-CMake Transparent Integration]
* [https://blog.conan.io/2018/06/11/Transparent-CMake-Integration.html Conan-CMake Transparent Integration]
* [https://conan.io/ Conan, the C / C++ Package Manager]
* [https://conan.io/ Conan, the C / C++ Package Manager]
Line 41: Line 42:
* [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]
* [https://docs.conan.io/en/latest/getting_started.html An MD5 hash calculator using the Poco Libraries]
* [[Conan]]
* [[Conan]]



Revision as of 08:43, 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