Android

Hoe anaconda op debian 10 te installeren

Install Anaconda in Linux | Install Anaconda Python, Jupyter Notebook, Spyder on Ubuntu, Arch Linux

Install Anaconda in Linux | Install Anaconda Python, Jupyter Notebook, Spyder on Ubuntu, Arch Linux

Inhoudsopgave:

Anonim

Anaconda is het populairste Python / R-platform voor data science en machine learning. Het wordt gebruikt voor grootschalige gegevensverwerking, voorspellende analyses en wetenschappelijk computergebruik.

Anaconda-distributie wordt geleverd met meer dan 1500 open-source datapakketten. Het bevat ook het conda-opdrachtregelprogramma en een grafische grafische gebruikersinterface genaamd Anaconda Navigator.

In deze zelfstudie helpen we u bij het downloaden en installeren van Anaconda Python Distribution op Debian 10.

Anaconda installeren

Op het moment dat dit artikel wordt geschreven, is de nieuwste stabiele versie van Anaconda versie 2019.10. Voordat je het Anaconda-installatiescript downloadt, ga je naar de Anaconda-downloadpagina en controleer je of er een nieuwe versie van Anaconda voor Python 3 beschikbaar is om te downloaden.

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

sh /tmp/Anaconda3-2019.10-Linux-x86_64.sh

Welcome to Anaconda3 2019.10 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 SPACE om door de licentie te bladeren. Als u klaar bent met het controleren van de licentie, wordt u gevraagd de licentievoorwaarden te accepteren:

Do you accept the license terms? >>> yes

Typ yes om de licentie te accepteren en het script zal u vragen om de installatielocatie te kiezen.

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

De standaardlocatie is prima voor de meeste gebruikers. Druk op ENTER om de locatie te bevestigen en het installatieproces zal beginnen.

De installatie kan enige tijd duren. Zodra het is voltooid, ziet u het volgende:

Preparing transaction: done Executing transaction: done installation finished. Do you wish the installer to initialize Anaconda3 by running conda init?

Typ yes , druk op ENTER en het script voegt conda aan je PATH :

==> For changes to take effect, close and re-open your current shell. <== If you'd prefer that conda's base environment not be activated on startup, set the auto_activate_base parameter to false: conda config --set auto_activate_base false Thank you for installing Anaconda3! =========================================================================== Anaconda and JetBrains are working together to bring you Anaconda-powered environments tightly integrated in the PyCharm IDE. PyCharm for Anaconda is available at:

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

source ~/.bashrc

Gebruik de opdracht conda om te controleren of Anaconda met succes is geïnstalleerd:

conda info

active environment: base active env location: /home/vagrant/anaconda3 shell level: 1 user config file: /home/vagrant/.condarc populated config files: conda version: 4.7.12 conda-build version: 3.18.9 python version: 3.7.4.final.0 virtual packages: base environment: /home/vagrant/anaconda3 (writable) channel URLs: https://repo.anaconda.com/pkgs/main/linux-64 https://repo.anaconda.com/pkgs/main/noarch https://repo.anaconda.com/pkgs/r/linux-64 https://repo.anaconda.com/pkgs/r/noarch package cache: /home/vagrant/anaconda3/pkgs /home/vagrant/.conda/pkgs envs directories: /home/vagrant/anaconda3/envs /home/vagrant/.conda/envs platform: linux-64 user-agent: conda/4.7.12 requests/2.22.0 CPython/3.7.4 Linux/4.19.0-5-amd64 debian/10 glibc/2.28 UID:GID: 1000:1000 netrc file: None offline mode: False

Anaconda bijwerken

Het bijwerken van Anaconda is een vrij eenvoudig proces. Begin met het bijwerken van 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 voorheen, typ y wanneer u daarom wordt gevraagd.

Je moet je Anaconda-installatie regelmatig bijwerken.

Anaconda verwijderen

Om Anaconda van uw Debian-systeem te verwijderen, verwijdert u eerst de map waarin u Anaconda hebt geïnstalleerd:

rm -rf ~/anaconda3

Bewerk het ~/.bashrc bestand en verwijder de Anaconda-map uit de omgevingsvariabele PATH:

~ /.Bashrc

# >>> conda initialize >>> # !! Contents within this block are managed by 'conda init' !! __conda_setup="$('/home/vagrant/anaconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)" if; then eval "$__conda_setup" else if; then. "/home/vagrant/anaconda3/etc/profile.d/conda.sh" else export PATH="/home/vagrant/anaconda3/bin:$PATH" fi fi unset __conda_setup # <<< conda initialize <<<

Voer de volgende rm opdracht uit om de verborgen bestanden en mappen uit de thuismap van de gebruiker te verwijderen:

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

Conclusie

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

debian anaconda