Android

Hoe anaconda op Centos 7 te installeren

How to Install Python Anaconda and Miniconda on CentOS7

How to Install Python Anaconda and Miniconda on CentOS7

Inhoudsopgave:

Anonim

Anaconda is het populairste python data science- en machine learning-platform, dat wordt gebruikt voor grootschalige gegevensverwerking, voorspellende analyses en wetenschappelijk computergebruik. Anaconda-distributie wordt geleverd met meer dan 1.000 datapakketten, het conda-opdrachtregelprogramma en met een grafische grafische gebruikersinterface genaamd Anaconda Navigator.

Deze tutorial doorloopt de stappen van het downloaden en installeren van Anaconda voor Python 3 op CentOS 7.

Anaconda installeren

Op het moment dat dit artikel werd geschreven, is versie 5.3.1 de nieuwste stabiele versie van Anaconda. Voordat je het Anaconda-installatiescript downloadt, bezoek je de Anaconda Downloads-pagina en controleer je of er een nieuwe versie van Anaconda voor Python 3 beschikbaar is om te downloaden.

Voer het Anaconda-installatiescript uit

Voer het installatiescript uit om het Anaconda-installatieproces te starten:

bash Anaconda3-5.3.1-Linux-x86_64.sh

U zou een uitvoer als volgt moeten zien:

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

Druk op ENTER om door te gaan en druk vervolgens op ENTER om door de licentie te bladeren. Als u klaar bent met het controleren van de licentie, wordt u gevraagd de licentievoorwaarden goed te keuren:

Do you accept the license terms?

Typ yes om de licentie te accepteren en u wordt gevraagd de installatielocatie te kiezen.

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

De standaardlocatie is goed voor de meeste gebruikers, druk op ENTER om de locatie te bevestigen en het installatieproces zal doorgaan.

De installatie kan enige tijd duren en zodra deze is voltooid, wordt de volgende uitvoer weergegeven:

Installation finished. Do you wish the installer to initialize Anaconda3 in your /home/linuxize/.bashrc ?

Appending source /home/linuxize/anaconda3/bin/activate to /home/linuxize/.bashrc A backup will be made to: /home/linuxize/.bashrc-anaconda3.bak For this change to become active, you have to open a new terminal. Thank you for installing Anaconda3!

Het installatieprogramma vraagt ​​u ook of u Visual Studio Code wilt downloaden en installeren.

Anaconda is partnered with Microsoft! Microsoft VSCode is a streamlined code editor with support for development operations like debugging, task running and version control. To install Visual Studio Code, you will need: - Administrator Privileges - Internet connectivity Visual Studio Code License: https://code.visualstudio.com/license Do you wish to proceed with the installation of Microsoft VSCode?

U kunt meer informatie over Visual Studio vinden op de website van de editor. Als u Visual Studio Code wilt installeren, typt u yes anders typt u no .

Om de Anaconda-installatie te activeren, laadt u de nieuwe omgevingsvariabele PATH die door het Anaconda-installatieprogramma is toegevoegd aan de huidige shell-sessie met de volgende opdracht:

source ~/.bashrc

Controleer de installatie

Je kunt je Anaconda-installatie verifiëren met het conda commando. Om bijvoorbeeld informatie weer te geven over het huidige conda-installatietype:

conda info

active environment: base active env location: /home/linuxize/anaconda3 shell level: 1 user config file: /home/linuxize/.condarc populated config files: conda version: 4.5.11 conda-build version: 3.15.1 python version: 3.7.0.final.0 base environment: /home/linuxize/anaconda3 (writable) channel URLs: https://repo.anaconda.com/pkgs/main/linux-64 https://repo.anaconda.com/pkgs/main/noarch https://repo.anaconda.com/pkgs/free/linux-64 https://repo.anaconda.com/pkgs/free/noarch https://repo.anaconda.com/pkgs/r/linux-64 https://repo.anaconda.com/pkgs/r/noarch https://repo.anaconda.com/pkgs/pro/linux-64 https://repo.anaconda.com/pkgs/pro/noarch package cache: /home/linuxize/anaconda3/pkgs /home/linuxize/.conda/pkgs envs directories: /home/linuxize/anaconda3/envs /home/linuxize/.conda/envs platform: linux-64 user-agent: conda/4.5.11 requests/2.19.1 CPython/3.7.0 Linux/3.10.0-957.1.3.el7.x86_64 centos/7 glibc/2.17 UID:GID: 0:0 netrc file: None offline mode: False

Anaconda bijwerken

Het updaten van de Anaconda is een vrij eenvoudig proces, update eerst de conda-tool met:

conda update conda

Wanneer u wordt gevraagd om de update te bevestigen, typt u y om door te gaan.

Zodra conda is bijgewerkt, ga je verder met de Anaconda-update:

conda update anaconda

Hetzelfde als bij de vorige opdracht, typ y wanneer u daarom wordt gevraagd.

Je moet je Anaconda-installatie regelmatig bijwerken.

Anaconda verwijderen

  1. Verwijder de installatiemap van Anaconda.

    Om het volledige Anaconda installatiemaptype te verwijderen:

    rm -rf ~/anaconda3

    Bewerk de omgevingsvariabele PATH.

    Bewerk het ~/.bashrc bestand en verwijder de code toegevoegd door het Anaconda installatieprogramma:

    ~ /.Bashrc

    # added by Anaconda3 5.3.1 installer # >>> conda init >>> # !! Contents within this block are managed by 'conda init' !! __conda_setup="$(CONDA_REPORT_ERRORS=false '/home/linuxize/anaconda3/bin/conda' shell.bash hook 2> /dev/null)" if; then \eval "$__conda_setup" else if; then. "/home/linuxize/anaconda3/etc/profile.d/conda.sh" CONDA_CHANGEPS1=false conda activate base else \export PATH="/home/linuxize/anaconda3/bin:$PATH" fi fi unset __conda_setup # <<< conda init <<<

    Verwijder de verborgen bestanden.

    De volgende opdracht verwijdert de verborgen bestanden en mappen die zijn gemaakt in de thuismap van uw gebruiker:

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

Conclusie

Nu je Anaconda je CentOS-systeem hebt gedownload en geïnstalleerd, kun je de officiële Aan de slag met conda-gids raadplegen.

centos anaconda