Anaconda linux install terminal

Install Anaconda on Ubuntu (or Linux) via command line

I would like to install Anaconda on a remote server. The server is running Ubuntu 12.04. I only have access to this server via SSH. How can I install Anaconda via the command line?

The Getting started document requires the download of a setup program through the browser. Please avoid unnecessary and unwarranted sarcasm.

8 Answers 8

Something along the lines of:

wget https://repo.anaconda.com/archive/Anaconda3-2020.07-Linux-x86_64.sh 

to get the installer for 64 bit linux followed by:

bash Anaconda3-2020.07-Linux-x86_64.sh 

@LubedUpSlug what output do you get ? I’m not sure if that version in the command is supported any longer.

Please take a look at the Anaconda repo archive page and select an appropriate version that you’d like to install.

 # replace this `Anaconda3-version.num-Linux-x86_64.sh` with your choice ~$ wget -c https://repo.continuum.io/archive/Anaconda3-vers.num-Linux-x86_64.sh ~$ bash Anaconda3-version.num-Linux-x86_64.sh 

Concrete Example:

As of this writing, Anaconda3-2020.07 is the latest version. So,

~$ wget -c https://repo.anaconda.com/archive/Anaconda3-2020.07-Linux-x86_64.sh ~$ bash Anaconda3-2020.07-Linux-x86_64.sh 

P.S. Based on comments, this should also work in CentOS systems.

You can do as Prashant said or you can use bash scripts to automate the installation. Just simply copy and paste depending on the version of Python you want

If you are trying to it entirely in command line you use a bash script python 2 anaconda install bash script:

# Go to home directory cd ~ # You can change what anaconda version you want at # https://repo.continuum.io/archive/ wget https://repo.continuum.io/archive/Anaconda2-4.2.0-Linux-x86_64.sh bash Anaconda2-4.2.0-Linux-x86_64.sh -b -p ~/anaconda rm Anaconda2-4.2.0-Linux-x86_64.sh echo 'export PATH="~/anaconda/bin:$PATH"' >> ~/.bashrc # Refresh basically source .bashrc conda update conda 
# Go to home directory cd ~ # You can change what anaconda version you want at # https://repo.continuum.io/archive/ wget https://repo.continuum.io/archive/Anaconda3-4.2.0-Linux-x86_64.sh bash Anaconda3-4.2.0-Linux-x86_64.sh -b -p ~/anaconda rm Anaconda3-4.2.0-Linux-x86_64.sh echo 'export PATH="~/anaconda/bin:$PATH"' >> ~/.bashrc # Refresh basically source .bashrc conda update conda 

Источник

Установка Anaconda в Ubuntu

Anaconda — это очень популярный дистрибутив Python, который содержит удобный пакетный менеджер Conda, несколько предустановленных версий Python (2.7, 3.4 и 3.7), а также среду разработки IDLE Spider и множество библиотек, которые очень просто установить. Ещё здесь есть библиотеки для обработки Big Data, прогнозной аналитики и научных вычислений. Также можно всем управлять через графическую утилиту Anaconda Navigator.

В этой статье мы рассмотрим, как скачать и установить Anaconda Python Ubuntu 18.04 с официального сайта программы, а также как подготовить эту платформу к работе.

Читайте также:  Принтер canon 1120 драйвер linux

Установка Anacoda в Ubuntu

1. Скачивание и установка программы

Сначала нужно скачать установщик платформы с официального сайта. На момент написания статьи самая свежая версия программы — 2019.03. Нажмите кнопку Download, а затем выберите операционную систему Linux:

Вы можете скачать программу прямо в браузере или скопировать ссылку для загрузки через wget. Например, для текущей версии команда будет выглядеть так:

Поскольку это достаточно большой файл, после завершения загрузки желательно проверить его по контрольной суме. Найти контрольную сумму загруженного файла можно командой:

Затем её нужно сравнить с сумой, указанной на этой странице для вашей версии программы. Если полученные значения совпадают, значит всё правильно.

Далее запустите полученный скрипт:

На первом шаге установки нажмите Enter, затем наберите yes, чтобы принять лицензионное соглашение:

Далее нужно выбрать папку, куда будет установлена программа:

Затем пойдёт установка Anaconda 3 Ubuntu. Процесс установки займёт некоторое время.

В конце установки программа предложит изменить ~/.bashrc таким образом, чтобы Сonda запускалась автоматически при запуске терминала. Если вы не сделали это во время установки, то это можно выполнить потом командой:

Затем выполните следующую команду, чтобы система перечитала настройки:

Теперь вы можете проверить, всё ли работает, выполнив такую команду:

На этом установка Anaconda Ubuntu завершена.

2. Обновление Anaconda

Обновление Anaconda тоже достаточно просто выполнить. Сначала нужно обновить инструмент conda. Для этого выполните:

На вопросы программы отвечайте y. Когда обновление завершится, можно обновить саму Anaconda 3:

Аналогично предыдущему пункту, нажмите y, чтобы продолжить обновление.

3. Окружения Conda

Как я уже сказал, Сonda — это пакетный менеджер, а также это менеджер окружений. Вы можете создать несколько окружений с разными версиями Python, а также с разными установленными в них библиотеками. Посмотреть список доступных окружений можно командой:

Для активации окружения используется команда activate. Например, сделаем активным окружение base:

Также вы можете создать новое окружение с другой версией Python. Например, сделаем окружение с Python 3.5:

conda create —name ptn35env python=3.5

Программа создаст окружение и сообщит, какие пакеты ей надо установить, соглашаемся на установку:

Затем активируем нужное окружение:

Чтобы деактивировать текущее окружение, используйте команду deactivate:

Чтобы удалить окружение ptn35env, нужно использовать не команду uninstall, а remove:

conda remove —name ptn35env -all

4. Установка пакетов Conda

Посмотреть список установленных пакетов можно командой list:

Чтобы найти нужный пакет, используйте search, например, ищем пакетный менеджер Python — pip:

А для установки пакета используйте install. Например, установим tensorflow:

Удалить пакет можно командой remove:

Удаление Anaconda

Чтобы удалить Anaconda из своей системы, достаточно выполнить следующие команды:

Откройте файл ~/.bashrc и удалите оттуда строки, добавленные Anaconda, обычно, находятся между тегами conda initialize:

Затем удалите скрытые папки с дополнительными файлами и конфигурацией платформы:

rm -rf ~/.condarc ~/.conda ~/.continuum

Выводы

Теперь установка Anaconda в Ubuntu завершена. Вы можете начать пользоваться пакетным менеджером Conda, использовать виртуальные окружения в Python и легко устанавливать пакеты. Мы разобрали только основы использования conda, чтобы изучить программу лучше, читайте официальную документацию.

Читайте также:  Копирование файлов через cmd linux

Обнаружили ошибку в тексте? Сообщите мне об этом. Выделите текст с ошибкой и нажмите Ctrl+Enter.

Источник

How to Install Anaconda on Linux

Invicti Web Application Security Scanner – the only solution that delivers automatic verification of vulnerabilities with Proof-Based Scanning™.

In this guide, we will be going through the process of installing Anaconda on Windows and Linux.

While I have used Windows 10 and Ubuntu 22.04, the process should be the same regardless of which Windows or Linux operating system you use.

What is Anaconda?

Anaconda is a very popular open-source Python and R distribution platform for scientific computing. It is a single application that comes with many useful tools out of the box. These include the Python and R language interpreters, IDEs such as Spyder and Jupyter Notebooks, and many popular Python packages you will likely need, such as Numpy, Matplotlib, and Tensorflow. It is basically the Swiss army knife of data science and scientific computing.

  • One of the advantages of Anaconda is that it simplifies the task of package and environment management. So rather than have your Python packages in the global space, you can choose to have them in virtual environments where the dependencies of one project do not affect the dependencies of another.
  • As with much of the software we developers like to use, it is free and open source.
  • It is easy to use. You can use Navigator, the GUI tool, or Conda, the command-line tool.

How to install Anaconda on Linux (Ubuntu)

To install Anaconda on Linux, we will download the installation script from Anaconda.org and execute it from the terminal. In this guide, I’ll use the Bash terminal, which is standard on most Linux distributions.

#1. Move to the Downloads folder

I would like to download the installation script into my Downloads folder. Therefore first, I will move to the Downloads folder using this command.

You can choose whichever directory you prefer. Popular options include the /tmp directory because files in that directory are automatically deleted when the computer restarts.

#2. Download the Anaconda installation script

Download the installation script using the following curl command:

$ curl https://repo.anaconda.com/archive/Anaconda3-2022.05-Linux-x86_64.sh -o Anaconda.sh

Here I am downloading the 2022.05 version that works on x86_64 processors. Make sure to pick one that works on your machine. You can do this by heading over to the downloads page of Anaconda.org and copying the link address of the download button.

#3. Run the script

Run the installation script using bash using the following command. Use the actual file path to Anaconda instead of path/to/Anaconda.

Here ./Anaconda.sh is where I saved my installation script. If you used a different file path or name during the download, be sure to use that instead.

Читайте также:  File recovery with linux

The program should start running, and you should see the following text in the terminal:

Welcome to Anaconda3 2022.05 In order to continue the installation process, please review the license agreement. Please, press ENTER to continue

#4. Accept the license agreement

Press Enter repeatedly to go through the license. After you have finished going through the license, you should see a prompt asking if you accept it or not. If you accept, type ‘yes’ and press ENTER.

Do you accept the license terms? [yes|no] [no] >>> Please answer 'yes' or 'no':

#5. Choose the installation directory

After accepting the license, you should see a prompt asking where you want to install Anaconda. The file location you choose will be where the Anaconda files are stored. You can select the default location by pressing ENTER. Alternatively, you can specify a custom location by typing it out and pressing ENTER.

Anaconda3 will now be installed into this location: /home/anesu/anaconda3 - Press ENTER to confirm the location - Press CTRL-C to abort the installation - Or specify a different location below [/home/anesu/anaconda3] >>>

#6. Initialize Anaconda3

After installation is complete, you will get a prompt to initialize Anaconda3 by running conda init . Just type yes and enter.

Do you wish the installer to initialize Anaconda3 by running conda init? [yes|no]

#7. Add Anaconda to path variables

After completing the installation process, you need to add Anaconda to the terminal path variable so you can call it from anywhere you are.

To add it, we need first to open the .bashrc file stored in the user’s home directory. You can open it using the nano text editor using the command below:

After the file opens, paste the following line of code at the end of the file. Remember to use Ctrl + Shift + V to paste when using Nano. Use the absolute file path to the Anaconda folder in place of . This is the folder where you chose to have Anaconda installed. Make sure to add /bin after the absolute path to the Anaconda folder.

#8. Verify installation.

After installation is complete, close your terminal and open it again. When you re-open the terminal, it should say base in parentheses before the normal terminal prompt text. On my computer, it says this:

Screenshot-from-2022-09-24-14-35-27-2

What base in parentheses means is that you are currently in the base environment.

To launch Anaconda Navigator (the GUI tool), use the ‘anaconda-navigator’ command. To use Conda (the CLI tool), use the ‘conda’ command.

Screenshot-from-2022-09-26-12-17-20

That’s it! 👩‍💻

If you see the screen above, then you have successfully installed Anaconda. From here, you can launch applications, manage environments and participate in the community. Hopefully, there are no errors at this point. But if there are, do check out the Anaconda Community.

Источник

Оцените статью
Adblock
detector