web-dev-qa-db-fra.com

Comment puis-je installer la dernière Anaconda avec wget

Je cherche à installer anaconda via wget sur mon serveur. J'ai rencontré https://askubuntu.com/questions/505919/installing-anaconda-python-on-ubunt et http://ericjonas.com/anaconda.html et cela semble prometteur. À ce jour, la version actuelle ( https://www.continuum.io/downloads#_unix ) est 4.0. Comment puis-je obtenir la dernière version.

16
user61629

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 lors 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 repos ou si vous voulez une version spécifique ici: https://repo.continuum.io/archive/

25
Bruce Pucci

Cela vous permet d'obtenir la dernière miniconda 3 pour les environnements Linux 64 bits:

  1. téléchargez le logiciel avec wget
  2. attribuer des droits d'exécution
  3. exécuter et suivre les instructions
  4. chargez .bashrc pour mettre à jour la variable d'environnement PATH
  5. mettre à jour 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
3
Sören

Cela téléchargera la dernière version anaconda de gratter le HTML du site Web:

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