An overview of conda
Conda is a command line-tool that is responsible for managing environments and Python packages, rather than using pip
. There are ways to query and search the packages, create new environments if necessary, and install and update Python packages into the existing conda environments. This command-line tool also keeps track of dependencies between packages and platform specifics, helping you to create working environments from different combinations of packages. To check the version of conda
that is running, you can enter conda --version
in Python and it will show, for example, conda 3.18.2
as the version.
A conda environment is a filesystem directory that contains a specific collection of conda
packages. To begin using an environment, simply set the PATH variable to point it to its bin directory.
Here is an example of the package installation from the command line using conda
:
$ conda install scipy Fetching package metadata: .... Solving package specifications: . Package...