Installing precompiled binaries with conda
conda is a package and virtual environment management system used by the Anaconda distribution of software for the PyData community. The Anaconda distribution includes Python as well as binaries for several hard-to-build open source projects such as PyTorch and TensorFlow. conda
can be installed without the full Anaconda distribution, which is very large, or the minimal Miniconda distribution, which is still over 256 MB.
Even though it was created for Python shortly after pip
, conda
has evolved into
a general-purpose package manager like APT or Homebrew. Now, it can be used to package and distribute software for any language. Because conda
downloads precompiled binaries, installing Python extension modules is a breeze. Another one of conda
's
big selling points is that it is cross-platform, with full support for Linux, macOS,
and Windows.
Besides package management, conda
is also a full-blown virtual environment manager. Conda
virtual...