Anaconda hat den Eindruck, dass die Nachfrage aufgrund von Datenanalysen steigt, diesmal jedoch In diesem Abschnitt wird das Verfahren zum Erstellen von CentOS7 und zum Installieren von Anaconda beschrieben.
Installation der Installationssprache

Tastatur

ntp

Unterstützte Sprachen

Sicherheitsrichtlinie

Einstellungen der Installationssoftware

Scheibe

Schalten Sie KDUMP aus

Netzwerkeinstellungen
3. Starten Sie die Installation und ändern Sie das Root-Passwort während der Installation
4. Nach dem Neustart wird der Befehlsbildschirm angezeigt. Melden Sie sich als root an.
5. Stoppen Sie die Firewall
systemctl stop firewalld
systemctl disable firewalld
6. Stoppen Sie SELINUX
setenforce 0
/etc/sysconfig/selinux
//SELINUX=enforcing
SELINUX=disabled
git clone https://github.com/yyuu/pyenv.git ~/.pyenv
echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bashrc
echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.bashrc
echo 'eval "$(pyenv init -)"' >> ~/.bashrc
source ~/.bashrc
#Überprüfen Sie die Version von Anaconda
pyenv install -l | grep anaconda
#Neueste Version Installation
pyenv install anaconda3-4.0.0
pyenv rehash
#Legen Sie Anaconda als Python-Standard fest
pyenv global anaconda3-4.0.0
echo 'export PATH="$PYENV_ROOT/versions/anaconda3-4.0.0/bin/:$PATH"' >> ~/.bashrc
source ~/.bashrc
conda update conda
Recommended Posts