Skip to content
/ conda Public
forked from conda/conda

OS-agnostic, system-level binary package manager and ecosystem

License

Notifications You must be signed in to change notification settings

xylar/conda

Repository files navigation

conda: package management tool

The conda command is the primary interface for managing an Anaconda installations. It can query and search the Anaconda package index and current Anaconda installation, create new Anaconda environments, and install and upgrade packages into existing Anaconda environments.

Examples

Create an Anaconda environment called myenv containing the latest version of scipy and all dependencies.

$ conda create -n myenv scipy

Install the latest version of pandas into myenv

$ conda install -n myenv pandas

Update all specified packages to latest versions in myenv

$ conda update -n myenv anaconda

Now that you have a custom environment, there are two ways to make it available for use

Using Activate

Activating a conda environment is made simple through the use of the activate command

$ source activate myenv

Similarly, to deactivate an environment and return your PATH variable to its previous state, use

$ source deactivate

Documentation

See the documentation for more information.

About

OS-agnostic, system-level binary package manager and ecosystem

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 97.9%
  • Shell 0.9%
  • Batchfile 0.5%
  • PowerShell 0.2%
  • Xonsh 0.2%
  • Makefile 0.1%
  • Other 0.2%