Android

Hoe anaconda op ubuntu 18.04 te installeren

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

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 leidt je door de stappen van het downloaden en installeren van Anaconda Python Distribution op Ubuntu 18.04.

Anaconda installeren

Op het moment dat dit artikel werd geschreven, is de nieuwste stabiele versie van Anaconda versie 5.2. 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.2.0-Linux-x86_64.sh

U zou een uitvoer als volgt moeten zien:

Welcome to Anaconda3 5.2.0 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 approve 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 prepend the Anaconda3 install location to PATH 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: None user config file: /home/linuxize/.condarc populated config files: conda version: 4.5.4 conda-build version: 3.10.5 python version: 3.6.5.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.4 requests/2.18.4 CPython/3.6.5 Linux/4.15.0-22-generic ubuntu/18.04 glibc/2.27 UID:GID: 1000:1000 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 Anaconda-map uit de omgevingsvariabele PATH:

    ~ /.Bashrc

    # added by Anaconda3 installer export PATH="/home/linuxize/anaconda3/bin:$PATH"

    Verwijder de verborgen bestanden.

    De volgende rm 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 Ubuntu-systeem hebt gedownload en geïnstalleerd, kun je de officiële Aan de slag met conda-gids raadplegen.

ubuntu anaconda