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.
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/
Cela vous permet d'obtenir la dernière miniconda 3 pour les environnements Linux 64 bits:
...
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
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