Using Anaconda Distribution in a commercial setting?
Using Anaconda Distribution in a commercial setting?
- You might need to purchase a license to stay compliant with our Terms of Service.
- If your company security policies do not allow admin privileges for end users, you will be unable to install Anaconda Distribution manually. Consider requesting that your IT admin add Anaconda Distribution to a software delivery or fleet management system (such as Kandji, Jamf, etc.).
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):
- curl
- wget
For instructions on downloading an older installer version, see Using older installer versions. -
(Optional) Anaconda recommends verifying the integrity of the installer after downloading it.
How do I verify my installer's integrity?
To ensure that your downloaded installer has not been tampered with or corrupted, generate its SHA-256 hash value and compare that hash to the official hash provided in the archive.-
Open a terminal and run the following command:
- Note the generated SHA-256 hash value from the output.
- Visit repo.anaconda.com/archive to find the official SHA-256 hash for your installer.
- Compare the hash values. If they match, the installer is safe to use.
-
Open a terminal and run the following command:
-
Install Anaconda Distribution by running one of the following commands (depending on your Linux architecture):
- Press Return to continue. You can review Anaconda’s Terms of Service (TOS) at https://anaconda.com/legal.
-
Enter
yesto 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
yeswhen 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.
Navigator dependencies
Navigator dependencies
Verify your install
You can verify your installation was successful using Anaconda Navigator or your terminal application.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.