Android

Wie installiere ich Anaconda auf Debian 10?

Install Anaconda Python, Jupyter Notebook, Spyder on Ubuntu 18.04 Linux / Ubuntu 20.04 LTS

Install Anaconda Python, Jupyter Notebook, Spyder on Ubuntu 18.04 Linux / Ubuntu 20.04 LTS

Inhaltsverzeichnis:

Anonim

Anaconda ist die beliebteste Plattform für Python / R-Datenwissenschaft und maschinelles Lernen. Es wird für die Datenverarbeitung in großem Maßstab, für Predictive Analytics und für das wissenschaftliche Rechnen verwendet.

Anaconda Distribution wird mit mehr als 1.500 Open-Source-Datenpaketen ausgeliefert. Es enthält auch das Conda-Befehlszeilentool und eine grafische Desktop-Benutzeroberfläche namens Anaconda Navigator.

In diesem Tutorial werden wir Sie durch das Herunterladen und Installieren von Anaconda Python Distribution auf Debian 10 führen.

Anaconda installieren

Zum Zeitpunkt des Schreibens dieses Artikels ist die neueste stabile Version von Anaconda die Version 2019.10. Besuchen Sie vor dem Herunterladen des Anaconda-Installationsskripts die Anaconda-Downloadseite und prüfen Sie, ob eine neue Version von Anaconda für Python 3 zum Herunterladen verfügbar ist.

Führen Sie das Skript aus, um den Anaconda-Installationsprozess zu 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 >>>

Drücken Sie die SPACE , um fortzufahren, und drücken Sie dann die SPACE um durch die Lizenz zu blättern. Nachdem Sie die Lizenz überprüft haben, werden Sie aufgefordert, die Lizenzbedingungen zu akzeptieren:

Do you accept the license terms? >>> yes

Geben Sie yes , um die Lizenz zu akzeptieren, und das Skript fordert Sie auf, den Installationsort auszuwählen.

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

Der Standardspeicherort ist für die meisten Benutzer in Ordnung. ENTER die ENTER , um den Speicherort zu bestätigen, und der Installationsvorgang wird gestartet.

Die Installation kann einige Zeit dauern. Sobald es abgeschlossen ist, sehen Sie Folgendes:

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

conda Sie yes , drücken Sie die ENTER und das Skript fügt conda zu Ihrem 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:

Um die Anaconda-Installation zu aktivieren, laden Sie die neue Umgebungsvariable PATH , die vom Anaconda-Installationsprogramm hinzugefügt wurde, mit dem folgenden Befehl in die aktuelle Shell-Sitzung:

source ~/.bashrc

Um zu überprüfen, ob Anaconda erfolgreich installiert wurde, verwenden Sie den Befehl conda :

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

Aktualisieren von Anaconda

Das Aktualisieren von Anaconda ist ein ziemlich einfacher Vorgang. Beginnen Sie mit der Aktualisierung des conda Tools mit:

conda update conda

Wenn Sie aufgefordert werden, die Aktualisierung zu bestätigen, geben Sie y um fortzufahren.

Sobald conda aktualisiert ist, fahren Sie mit dem Anaconda-Update fort:

conda update anaconda

Geben Sie nach Aufforderung wie zuvor y um fortzufahren.

Sie sollten Ihre Anaconda-Installation regelmäßig aktualisieren.

Anaconda deinstallieren

Um Anaconda von Ihrem Debian-System zu deinstallieren, entfernen Sie zuerst das Verzeichnis, in dem Sie Anaconda installiert haben:

rm -rf ~/anaconda3

Bearbeiten Sie die Datei ~/.bashrc und entfernen Sie das Anaconda-Verzeichnis aus der Umgebungsvariablen 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 <<<

Führen Sie den folgenden Befehl aus, um die ausgeblendeten Dateien und Ordner aus dem Basisverzeichnis des Benutzers zu entfernen:

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

Fazit

Nachdem Sie Anaconda heruntergeladen und auf Ihrem Debian-System installiert haben, können Sie den offiziellen Leitfaden Erste Schritte mit conda lesen.

Debian Anaconda