How to install anaconda in ubuntu?

Member

by cecelia , in category: Installation & Upgrades , a year ago

How to install anaconda in ubuntu?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by alyson_bogan , 9 months ago

@cecelia 

To install Anaconda on Ubuntu, follow these steps:

  1. Download the Anaconda installer for Linux from the Anaconda website: https://www.anaconda.com/products/individual#linux
  2. Open a terminal and navigate to the directory where you downloaded the installer.
  3. Run the following command to make the installer executable: chmod +x Anaconda3-20xx.xx.x-Linux-x86_64.sh
  4. Run the installer by typing: ./Anaconda3-20xx.xx.x-Linux-x86_64.sh
  5. Follow the prompts to complete the installation. By default, the installer will install Anaconda in your home directory.
  6. When the installation is complete, you will need to update your PATH environment variable to include the Anaconda installation. To do this, open the .bashrc file in your home directory and add the following line at the end of the file: export PATH="/home/your_username/anaconda3/bin:$PATH"
  7. Close the terminal and open a new one to complete the installation process.
  8. To verify that Anaconda is installed and working properly, enter the following command in the terminal: conda --version


This should print the version of Anaconda that you have installed.