conda list | View list of packages and versions installed in active environment |
conda search beautiful-soup | Search for a package to see if it is available to conda install |
conda install -n bunnies beautiful-soup | Install a new packageNOTE: If you do not include the name of the environment, it will install in the current active environment. |
conda update beautiful-soup | Update a package in the current environment |
conda search --override-channels -c pandas bottleneck | Search for a package in a specific location (the pandas channel on Anaconda.org) |
conda install -c pandas bottleneck | Install a package from a specific channel |
conda search --override-channels -c defaults beautiful-soup | Search for a package to see if it is available from the Anaconda repository |
conda install iopro accelerate | Install commercial Continuum packages |
conda skeleton pypi pyinstrument conda build pyinstrument | Build a Conda package from a Python Package Index (PyPi) Package |