Sie können das folgende Bash-Skript schreiben, um den Installationsprozess zu automatisieren.
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 lädt einfach die Datei herunter...
für Python 2.7:
wget https://repo.continuum.io/archive/Anaconda2-2018.12-Linux-x86_64.sh
für python3.X:
wget https://repo.continuum.io/archive/Anaconda3-2018.12-Linux-x86_64.sh
Dies ist ein Shell-Skript, das Sie durch die Installation führt.
Führen Sie die folgende Zeile im Ordner der heruntergeladenen Datei aus, um die geführte Installation zu starten...
für Python 2.7:
bash Anaconda2-2018.12-Linux-x86_64.sh
für Python 3.X:
bash Anaconda3-2018.12-Linux-x86_64.sh
Überprüfen Sie hier die neuesten Repos oder wenn Sie eine bestimmte Version wünschen:https://repo.continuum.io/archive/
Dadurch wird die neueste Anaconda-Version heruntergeladen, indem der HTML-Code von der Website gescrapt wird:
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
Damit erhalten Sie das neueste Miniconda 3 für 64-Bit-Linux-Umgebungen:
- laden Sie die Software mit wget herunter
- Ausführungsrechte zuweisen
- ausführen und den Anweisungen folgen
- lade .bashrc, um die PATH-Umgebungsvariable zu aktualisieren
- conda aktualisieren
- Pip installieren
- eine Umgebung erstellen
...
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