GNU/Linux >> Linux Esercitazione >  >> Linux

Come posso installare l'ultimo Anaconda con wget

Puoi scrivere il seguente script bash per automatizzare il processo di installazione.

cd ~

wget https://repo.continuum.io/archive/Anaconda3-2020.11-Linux-x86_64.sh
bash Anaconda3-2020.11-Linux-x86_64.sh -b -p ~/anaconda3
rm Anaconda3-2020.11-Linux-x86_64.sh
echo 'export PATH="~/anaconda3/bin:$PATH"' >> ~/.bashrc 

# Reload default profile
conda init

source ~/.bashrc


wget scarica solo il file...

per Python 2.7 :

wget https://repo.continuum.io/archive/Anaconda2-2018.12-Linux-x86_64.sh

per python3.X:

wget https://repo.continuum.io/archive/Anaconda3-2018.12-Linux-x86_64.sh

Questo è uno script di shell che ti guida durante l'installazione.

Eseguire la seguente riga all'interno della cartella del file scaricato per avviare l'installazione guidata...

per Python 2.7:

bash Anaconda2-2018.12-Linux-x86_64.sh

per Python 3.X:

bash Anaconda3-2018.12-Linux-x86_64.sh

Controlla gli ultimi repository o se desideri una versione specifica qui:https://repo.continuum.io/archive/


Questo scaricherà l'ultima versione di anaconda dallo scraping dell'html dal sito web:

wget -O - https://www.anaconda.com/distribution/ 2>/dev/null | sed -ne '[email protected]*\(https:\/\/repo\.anaconda\.com\/archive\/Anaconda3-.*-Linux-x86_64\.sh\)\">64-Bit (x86) Installer.*@\[email protected]' | xargs wget

Questo ti dà l'ultima miniconda 3 per ambienti Linux a 64 bit:

  1. scarica il software con wget
  2. assegna diritti di esecuzione
  3. esegui e segui le istruzioni
  4. carica .bashrc per aggiornare la variabile d'ambiente PATH
  5. aggiorna conda
  6. installa pip
  7. crea un ambiente

...

wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
chmod +x Miniconda3-latest-Linux-x86_64.sh
./Miniconda3-latest-Linux-x86_64.sh
source ~/.bashrc

# now update conda and install pip
conda update conda
conda install pip

# (optional) create and activate an environment
conda create -n py3 python pandas scikit-learn jupyter
source activate py3

Linux
  1. Come installare l'ultima versione di Handbrake su Ubuntu

  2. Come installare l'ultimo kernel Linux su CentOS 7

  3. Come installare l'ultimo Zoom su Ubuntu 20.04 LTS

  4. Come installare l'ultimo MySQL in Debian 10

  5. Come posso fare un HTTP PUT con Wget?

Come installare l'ultimo MySQL 8 su Debian 11

Come installare l'ultimo MySQL 8 su Ubuntu 20.04

Come installare l'ultima ImageMagick su Ubuntu 22.04

Come installare Python 2.7 su CentOS 7.1 o 6.7 con Anaconda

Come installare wget su CentOS 7 con un Cheat Sheet di wget

Come installare la distribuzione Anaconda Python su Ubuntu 18.04