LinuxCommandLibrary

conan

The open source, decentralized and multi-platform package manager to create and share all your native binaries.

TLDR

Install packages based on conanfile.txt

$ conan install [.]
copy


Install packages and create configuration files for a specific generator
$ conan install -g [generator]
copy


Install packages, building from source
$ conan install [.] --build
copy


Search for locally installed packages
$ conan search [package]
copy


Search for remote packages
$ conan search [package] -r [remote]
copy


List remotes
$ conan remote list
copy

Help

Consumer commands 
  install    Installs the requirements specified in a recipe (conanfile.py or conanfile.txt). 
  config     Manages Conan configuration. 
  get        Gets a file or list a directory of a given reference or package. 
  info       Gets information about the dependency graph of a recipe. 
  search     Searches package recipes and binaries in the local cache or a remote. Unless a 
             remote is specified only the local cache is searched. 
Creator commands 
  new        Creates a new package recipe template with a 'conanfile.py' and optionally, 
             'test_package' testing files. 
  create     Builds a binary package for a recipe (conanfile.py). 
  upload     Uploads a recipe and binary packages to a remote. 
  export     Copies the recipe (conanfile.py & associated files) to your local cache. 
  export-pkg Exports a recipe, then creates a package from local source and build folders. 
  test       Tests a package consuming it from a conanfile.py with a test() method. 
Package development commands 
  source     Calls your local conanfile.py 'source()' method. 
  build      Calls your local conanfile.py 'build()' method. 
  package    Calls your local conanfile.py 'package()' method. 
  editable   Manages editable packages (packages that reside in the user workspace, but are 
             consumed as if they were in the cache). 
  workspace  Manages a workspace (a set of packages consumed from the user workspace that 
             belongs to the same project). 
Misc commands 
  profile    Lists profiles in the '.conan/profiles' folder, or shows profile details. 
  remote     Manages the remote list and the package recipes associated with a remote. 
  user       Authenticates against a remote with user/pass, caching the auth token. 
  imports    Calls your local conanfile.py or conanfile.txt 'imports' method. 
  copy       Copies conan recipes and packages to another user/channel. 
  remove     Removes packages or binaries matching pattern from local cache or remote. 
  alias      Creates and exports an 'alias package recipe'. 
  download   Downloads recipe and binaries to the local cache, without using settings. 
  inspect    Displays conanfile attributes, like name, version, and options. Works locally, 
             in local cache and remote. 
  help       Shows help for a specific command. 
  lock       Generates and manipulates lock files. 
  frogarian  Conan The Frogarian 

Conan commands. Type "conan  -h" for help 

Copied to clipboard