Managing Python Packages
Managing Packages in Anaconda
The Anaconda Navigator interface can be used to install, remove, and update packages. To update, start Navigator, click Environments, change the dropdown from Installed
to Updateable
, then go through and select packages you wish to upgrade by clicking on the checkbox and selecting “Mark for update” from the dropdown. The checkbox will change to an arrow. When you select a package, a green Apply
button and a red Clear
button will appear at the lower right. When you have marked all packages you wish to update, click the Apply
button. (It may take a while to complete.)
To install new packages from the Navigator, go to the Environments tab, change the “Installed” dropdown to “Not installed” and wait for the package list to be populated. Find the package you want, in this illustration one called dill
, select it (and any other packages you find you might need), then click the green Apply button.
Conda can be also used from the command line. In Linux and Mac OS, the terminal can be used for this. In Windows, use the Anaconda Command Prompt, which can be accessed through the Apps menu in the Anaconda folder, should be opened for these commands, since it has the correct paths preset.
If you are updating many packages it may be better to do it through a command line. To upgrade a package type
conda update package
You can also install packages with either the Navigator interface or with the conda command line.
conda install newpackage
Many more options are available.
Conda Environments
Xarray is a general-purpose package but it is particularly aimed at geophysical applications. Suppose you wish to use it only for a particular application (a homework problem, for example) but do not wish to install it into your main environment. When you use Anaconda you always have a conda environment; the one with which you start is called base. Conda can also be used to create “sandboxes” called conda environments. To create a new environment for your Xarray project, start the Navigator and click on the Environments tab in the upper left. Click the Create button in the lower pane. A pop-up will appear. Name your environment, say geodata
. A relatively small number of packages will be installed. Once created, you can select it from your list of environments, change the dropdown to Installable, and install packages as usual.
From the command line, run
conda create --name geodata --python=3.8
The Python version must be specified. To switch from the command line run (Mac and Linux)
source activate geodata
Windows
activate geodata
Once activated, run
conda install xarray
along with other packages you may wish to include.
Conda’s user guide describes conda’s capabilities.
The Conda cheat sheet is handy.
Pip
Pip is different package installer not connected directly to Anaconda or Conda. It can be used with Anaconda, however, in any conda environments, but Conda will not be aware of packages installed with pip. However, not all packages are available through Conda so pip is useful. It is command-line based. Anaconda provides a pip executable for cases where conda cannot be used or the user would prefer pip.
For most packages it is sufficient to type
pip install pkg
Another option is
python -m pip install pkg
The latter form ensures that the pip is compatible with the Python in use.
As for conda, the exact name of the package must be known.
Documentation for pip is at the official site.