GNU/Linux >> Tutoriels Linux >  >> Linux

Comment puis-je installer le dernier Anaconda avec wget

Vous pouvez écrire le script bash suivant pour automatiser le processus d'installation.

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 télécharge simplement le fichier...

pour python 2.7 :

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

pour python3.X :

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

Il s'agit d'un script shell qui vous guide tout au long de l'installation.

Exécutez la ligne suivante à l'intérieur du dossier du fichier téléchargé pour démarrer l'installation guidée...

pour python 2.7 :

bash Anaconda2-2018.12-Linux-x86_64.sh

pour Python 3.X :

bash Anaconda3-2018.12-Linux-x86_64.sh

Vérifiez les derniers dépôts ou si vous voulez une version spécifique ici :https://repo.continuum.io/archive/


Cela téléchargera la dernière version d'anaconda en grattant le code HTML du site 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

Cela vous permet d'obtenir le dernier miniconda 3 pour les environnements Linux 64 bits :

  1. télécharger le logiciel avec wget
  2. attribuer des droits d'exécution
  3. exécuter et suivre les instructions
  4. charger .bashrc pour mettre à jour la variable d'environnement PATH
  5. mettre à jour le conda
  6. installer pip
  7. créer un environnement

...

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. Comment installer la dernière version de Handbrake sur Ubuntu

  2. Comment installer le dernier noyau Linux sur CentOS 7

  3. Comment installer le dernier Zoom sur Ubuntu 20.04 LTS

  4. Comment installer le dernier MySQL dans Debian 10

  5. Comment puis-je faire un HTTP PUT avec Wget ?

Comment installer le dernier MySQL 8 sur Debian 11

Comment installer le dernier MySQL 8 sur Ubuntu 20.04

Comment installer le dernier ImageMagick sur Ubuntu 22.04

Comment installer Python 2.7 sur CentOS 7.1 ou 6.7 avec Anaconda

Comment installer wget sur CentOS 7 avec une feuille de triche wget

Comment installer la distribution Anaconda Python sur Ubuntu 18.04