Conan Client: Difference between revisions
Jump to navigation
Jump to search
Line 29: | Line 29: | ||
cd conan; python -m pip install -e . | cd conan; python -m pip install -e . | ||
pip install conan --upgrade | pip install conan --upgrade | ||
==References== | |||
{| | |||
| 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://blog.conan.io/2018/06/11/Transparent-CMake-Integration.html Conan-CMake Transparent Integration] | |||
* [https://conan.io/ Conan, the C / C++ Package Manager] | |||
* [https://docs.conan.io/en/latest/uploading_packages/artifactory_ce.html#creating-and-using-a-conan-repo Creating and Using a Conan Repo] | |||
* [https://help.sonatype.com/repomanager3/formats/conan-repositories Nexus Conan Repository Config] | |||
* [https://www.jfrog.com/confluence/display/JFROG/Artifactory+REST+API?utm_source=platform&utm_content=RTF Artifactory REST API] | |||
* [https://github.com/memsharded/hello Conan Hello World] | |||
* [https://conan.io/downloads.html Downloads] | |||
| valign="top" | | |||
|} |
Revision as of 07:31, 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
|