Finding and installing packages — Anaconda documentation (2024)

Anaconda.org hosts hundreds of useful Python packages for a wide variety of applications. You do not need to be logged in—or even have an Anaconda.org account—to search for public packages and install them. You do need to be logged in, however, to access authenticated packages, and you’ll need a token to access other users’ private packages.

Searching for public packages#

To search for packages:

  1. In the search box at the top of the page, type part or all of the name of a program you are searching for, then press Enter (return on Mac).

  2. Packages that match your search string are displayed. To see more information, click the package name.

Finding and installing packages — Anaconda documentation (1)

Refining your search results#

You can filter search results using three filter controls:

  • Type: All, conda only, Standard Python only, Standard R only, or Notebooks

  • Access: All, Public, Private (only available if you are logged in and have specific permissions), or Authenticated (only available if you are logged in)

  • Platform: All, source, linux-32, linux-64, linux-aarch64, linux-armv61, linux-armv71, linux-ppc641e, linux-s390x, noarch, osx-32, osx-64, win-32, or win-64

Tip

Source packages are source code only, not yet built for any specific platform.

Noarch packages are built to work on all platforms.

Viewing package information#

Each official package page on Anaconda.org provides valuable information about the package, such as its version, license, home webpage, documentation (if available), number of downloads, and the last time the package was updated.

Finding and installing packages — Anaconda documentation (2)

You can also find commands on this page to assist you with installing the package in your environment.

Tip

If the Installer section lists multiple install commands and you’re unsure about which one to use, the command without labels (most often the first on the list) is likely to be the default package.

Installing packages from Anaconda.org#

You can install packages using Anaconda Navigator, Anaconda’s graphical user interface that is built on top of conda. Advanced users may prefer using the terminal (Anaconda Prompt for Windows users).

Using Navigator#

Navigator is automatically installed when you install Anaconda. Miniconda users can obtain Navigator by running conda install anaconda-navigator.

To install a package into its own environment:

  1. Open Anaconda Navigator.

  2. Click Connect, then click SIGN IN next to Anaconda.org.

  3. Select Environments from the left-hand navigation, then look for your package by name using the Search Packages field. Filter packages further using the dropdown above the Name column.

  4. Select the checkbox of the package you want to install, then click the Apply.

For more information, see Navigator.

Using conda in the terminal (Anaconda Prompt for Windows users)#

Note

You must have conda downloaded and installed to use this method of installation.

To install a package into its own environment:

  1. Locate a package on Anaconda.org that you want to install, then clickon the package name.

  2. A detail page displays specific installation instructions for the current operating system. Copy and paste the full command into your terminal window.

For example, the command could be structured as:

# Replace <USERNAME> with your username# Replace <PACKAGE> with the name of the package you want to installconda install -c <USERNAME> <PACKAGE>

Tip

With no channel_alias defined in .condarc, the channel prefix defaults to https://conda.anaconda.org/. To learn more about channel aliases and how to set them, see this section on setting a channel alias.

Finding and installing packages — Anaconda documentation (2024)

FAQs

How do I get a list of packages installed in Anaconda? ›

In most Linux distributions, use Ctrl+Alt+T to open a terminal application. Run one of the following commands to verify your installation was successful: conda list - If Anaconda Distribution is installed successfully, this displays a list of packages installed in your active environment and their versions.

Why is Anaconda not installing properly? ›

This may be because your system lacks the sufficient disk space or memory to complete the process. Verify that you have enough disk space and memory on your system to install and use Anaconda packages. The minimum system requirements for Miniconda and Anaconda installers can be found in the conda user guide.

Why is conda solving environment so slow? ›

The main issue is due to the base environment having many packages. This is very often the cause of long solves as the problem space grows incredibly challenging and why we strongly encourage people to create environments instead of installing normal packages into the base env.

How to check if a Python package is installed in Anaconda? ›

To test your installation, in your Terminal window or Anaconda Prompt, run the command conda list . For a successful installation, a list of installed packages appears.

Why does the conda-forge take so long? ›

In conda-forge, some packages are available with GPU support. These packages not only take significantly longer to compile and build, but they also result in rather large binaries that users then download.

How do I list all installed packages? ›

We can list installed packages using pip by using the list command. Just open the terminal or command prompt and run the following command and you will see the list of all installed packages. This command will create a file named installed_packages. txt and save the list of packages in it.

What is the Python command to list packages installed? ›

With pip, the Python package installer, you can list installed packages using the pip list and pip freeze commands. pip list can filter and display packages by conditions like latest, outdated versions, and those not required by others. pip freeze is useful for creating requirements.

How to install packages in Python from file? ›

Installing Python Packages with Setup.py

To install a package that includes a setup.py file, open a command or terminal window and: cd into the root directory where setup.py is located. Enter: python setup.py install.

Is installing Anaconda the same as installing Python? ›

Anaconda comes with its own set of pre-installed data science packages and tools, making it convenient for beginners to set up their environment quickly. Python, on the other hand, requires users to manually install the required libraries and tools.

Where does Anaconda install programs? ›

Conda installs packages into the anaconda/pkgs directory.

How can I make conda install faster? ›

One option for speeding up conda is to reduce the index. The index is reduced by conda based upon the user's input specs. It's likely that your repodata contains package data that is not used in the solving stage. Filtering out these unnecessary packages before solving can save time.

Does Anaconda take a long time to install? ›

While it is mostly unattended, the download and installation of Anaconda can take a fair amount of time (approximately 10 to 15 minutes, depending on the speed of your system), so it is highly recommended to do this before you arrive at the tutorial session (and when you have access to a decent internet connection).

What is the difference between conda environment and Anaconda environment? ›

conda is an open source package and environment manager that comes with Anaconda. As a package manager, you can use conda to install, update, and remove packages and their "dependencies" (the packages they depend upon): If Anaconda doesn't include a package that you need, you use conda to download and install it.

How to check if Anaconda is installed properly? ›

Open the Anaconda Prompt: Click on the Windows Start menu, type “Anaconda Prompt” and press Enter. This will open the Anaconda command line interface. This command will display the version of Anaconda installed on your system. This command will display the Python version installed with your Anaconda distribution.

Where are my Anaconda packages installed? ›

By default, Anaconda/Miniconda stores packages in ~/anaconda/pkgs/ (or ~/opt/pkgs/ on macOS Catalina). Each package has an index. json file which lists the package's dependencies. This file resides in ~anaconda/pkgs/package_name/info/index.

Is Miniconda better than Anaconda? ›

Miniconda is a smaller, “minimal” version of Anaconda. It includes only Conda and Python, without any additional packages pre-installed. Miniconda is lightweight and quick to install, making it a great choice if you're working with limited disk space or only need specific packages.

Is conda faster than pip? ›

Conda installs binary packages, which means the packages include compiled code. This can make the installation process faster and more reliable, especially for packages with complex dependencies. Pip, by contrast, often installs packages from source, which means the code is compiled during the installation process.

Is mamba better than conda? ›

It's common that installing packages using Conda is slow or fails because Conda is unable to resolve dependencies. To get around this, we suggest the use of Mamba. Mamba is a drop-in replacement for Conda that is generally faster and better at resolving dependencies.

How to see what modules are installed in Python? ›

To check all the installed Python modules, we can use the following two commands with the 'pip': Using 'pip freeze' command. Using 'pip list command.

How to see list of installed packages in npm? ›

To list npm user-installed packages, you can use the npm list command in the terminal. By default, this command will show a tree-like structure of all installed packages for the current project. If you want to see a list of globally installed packages (user-installed), you can add the -g flag.

Top Articles
4 Easy Ways to Fix: Unable to Transfer Phone Number iPhone 15
Wireless Charging VS Wired Charging: Which One Is Better?
SZA: Weinen und töten und alles dazwischen
Craigslist Campers Greenville Sc
COLA Takes Effect With Sept. 30 Benefit Payment
Jefferey Dahmer Autopsy Photos
Practical Magic 123Movies
Apnetv.con
Progressbook Brunswick
Bme Flowchart Psu
Ktbs Payroll Login
Synq3 Reviews
Driving Directions To Atlanta
8 Ways to Make a Friend Feel Special on Valentine's Day
Cooktopcove Com
Gmail Psu
Grasons Estate Sales Tucson
Conan Exiles Colored Crystal
National Weather Service Denver Co Forecast
What Happened To Anna Citron Lansky
How pharmacies can help
Hdmovie 2
Craigs List Tallahassee
Happy Homebodies Breakup
Speedstepper
Giantbodybuilder.com
Gma' Deals & Steals Today
Delta Township Bsa
Mami No 1 Ott
Nikki Catsouras: The Tragic Story Behind The Face And Body Images
Mrstryst
The Ultimate Guide to Obtaining Bark in Conan Exiles: Tips and Tricks for the Best Results
Lil Durk's Brother DThang Killed in Harvey, Illinois, ME Confirms
Etowah County Sheriff Dept
Santa Cruz California Craigslist
Foolproof Module 6 Test Answers
Bimmerpost version for Porsche forum?
Go Smiles Herndon Reviews
Regis Sectional Havertys
Viewfinder Mangabuddy
Discover Wisconsin Season 16
Locate phone number
Best GoMovies Alternatives
Winta Zesu Net Worth
boston furniture "patio" - craigslist
Online-Reservierungen - Booqable Vermietungssoftware
Tom Kha Gai Soup Near Me
Hampton In And Suites Near Me
Strange World Showtimes Near Marcus La Crosse Cinema
Espn Top 300 Non Ppr
antelope valley for sale "lancaster ca" - craigslist
Skybird_06
Latest Posts
Article information

Author: Nathanial Hackett

Last Updated:

Views: 5329

Rating: 4.1 / 5 (72 voted)

Reviews: 87% of readers found this page helpful

Author information

Name: Nathanial Hackett

Birthday: 1997-10-09

Address: Apt. 935 264 Abshire Canyon, South Nerissachester, NM 01800

Phone: +9752624861224

Job: Forward Technology Assistant

Hobby: Listening to music, Shopping, Vacation, Baton twirling, Flower arranging, Blacksmithing, Do it yourself

Introduction: My name is Nathanial Hackett, I am a lovely, curious, smiling, lively, thoughtful, courageous, lively person who loves writing and wants to share my knowledge and understanding with you.