Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Skip to main content
This page provides instructions for installing Anaconda Distribution on Linux with the command line in a shell application.
Installation steps
-
Download the latest version of Anaconda Distribution by opening a terminal and running one of the following commands (depending on your Linux architecture and preferred download tool):
The linux-aarch64 package builds might not be compatible with certain Raspberry Pi setups, as Anaconda Distribution uses compiler options that target the server-class Neoverse N1/N2 microarchitecture.
Choose your architecture:curl -O https://repo.anaconda.com/archive/Anaconda3-2025.12-2-Linux-x86_64.sh
Choose your architecture:wget https://repo.anaconda.com/archive/Anaconda3-2025.12-2-Linux-x86_64.sh
-
(Optional) Anaconda recommends verifying the integrity of the installer after downloading it.
-
Install Anaconda Distribution by running one of the following commands (depending on your Linux architecture):
The linux-aarch64 package builds might not be compatible with certain Raspberry Pi setups, as Anaconda Distribution uses compiler options that target the server-class Neoverse N1/N2 microarchitecture.
bash ./Anaconda3-2025.12-2-Linux-x86_64.sh
-
Press Return to continue. You can review Anaconda’s Terms of Service (TOS) at https://anaconda.com/legal.
-
Enter
yes to agree to the TOS.
-
Press Return to accept the default install location (
PREFIX=/home/<USER>/anaconda3), or enter another file path to specify an alternate installation directory. The installation might take a few minutes to complete.
-
Choose
yes when asked if you want to initialize conda. This modifies your shell configuration to initialize conda whenever you open a new shell and to recognize conda commands automatically.
-
The installer finishes and displays, “Thank you for installing Anaconda3!”
-
Close and re-open your terminal window for the installation to fully take effect, or use the following command to refresh the terminal, depending on your shell:
You should see (base) in the command line prompt. This tells you that you’re in your base conda environment. To learn more about environments, see Environments.
Verify your install
You can verify your installation was successful using Anaconda Navigator or your terminal application.
Anaconda Navigator
Terminal
Anaconda Navigator opens automatically when installation completes successfully.If you need to manually open Anaconda Navigator, open a terminal and run the following command: Open your terminal application and run conda list. If conda has been installed correctly, a list of installed packages appears:
What’s next?
- Integrate conda with your preferred IDE to streamline package management directly in your development environment.
- Explore Working with conda to understand channels, environments, and package management workflows.
- The official conda documentation covers advanced topics like custom channels, build recipes, and performance optimization.
Advanced install options
For more advanced installation options, such as installing with silent mode, installing on older operating systems, or installing for multiple users, see Advanced installation.
Troubleshooting
Responses are generated using AI and may contain mistakes.