Anaconda is a software distribution system widely used in data science to simplify package management and deployment.
Anaconda comes with over 150 pre-installed Python packages to get you started quickly.
Some common packages that come pre-installed are:
In addition to pre-installed packages, you can install more Python packages using:
conda install PACKAGENAME
All packages available in the latest releases of Anaconda are listed here.
In case you want to install a specific version of a package, add =VERSION
with the package name. For example:
conda install numpy=1.10
You can upgrade a Python package in conda using:
conda update PACKAGENAME
To update all packages, use:
conda update --all
You can list all installed Python packages using:
conda list
You can also remove a package using:
conda remove PACKAGENAME
Free Resources