You can install packages from Anaconda.org channels using Anaconda Navigator or by using conda in a command line interface (CLI) with Anaconda Prompt (Terminal on macOS/Linux).
Navigator is automatically installed when you install Anaconda Distribution.Miniconda users can obtain Navigator by running conda install anaconda-navigator.
Using Navigator
Using the CLI
Navigator is automatically installed when you install Anaconda. Miniconda users can obtain Navigator by running conda install anaconda-navigator.To install a package into a local environment:
Open Anaconda Navigator.
Select Connect, then select SIGN IN beside Anaconda.org.
Enter your username and password and select Sign In to connect Navigator to Anaconda.org.
Select Environments from the left-hand navigation.
Select one of your environments or select Create to create a new one.
Select Not installed from the dropdown beside the Channels button.
Look for your package by name using the Search Packages field.
Select the checkbox of the package you want to install, then select Apply.
Navigator will then display the list of packages necessary to install your selected package. Select Apply to install all packages to your environment.
For more information on using Navigator, see Navigator’s Getting started page.
To install a package into a local environment:
Create a new environment or activate an existing environment.
Report incorrect code
Copy
Ask AI
conda create -n <ENV_NAME>
Replace <ENV_NAME> with the name of your environment.
The package’s details page displays specific installation instructions. Copy and paste the full command into your terminal window.This command will look different, depending on what kind of package you are installing:
Report incorrect code
Copy
Ask AI
conda install <CHANNEL>::<PACKAGE>
Replace <CHANNEL> with the channel containing the package. This could be a username or an organization.
Replace <PACKAGE> with the name of the package you want to install.