1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 07:24:55 +02:00
tldr/pages/common/conan.md
Lucas Gabriel Schneider a5fe31bc47
multiple pages: format technical tokens (#5119)
Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com>
Co-authored-by: Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com>
2021-01-31 12:05:18 -05:00

28 lines
600 B
Markdown

# conan
> The open source, decentralized and multi-platform package manager to create and share all your native binaries.
> More information: <https://conan.io/>.
- Install packages based on `conanfile.txt`:
`conan install {{.}}`
- Install packages and create configuation files for a specific generator:
`conan install -g {{generator}}`
- Install packages, building from source:
`conan install {{.}} --build`
- Search for locally installed packages:
`conan search {{package}}`
- Search for remote packages:
`conan search {{package}} -r {{remote}}`
- List remotes:
`conan remote --list`