Im Moment ist alles in Ordnung, daher ist Anaconda enthalten.
conda create -n Name der virtuellen Umgebung python = x.x Liste der zu installierenden Pakete (Trennzeichen ist Leerzeichen)
Beispiel)
conda create -n py27 python=2.7 anaconda
Sie werden aufgefordert, fortzufahren ([y] | n)? Drücken Sie also y
conda info -e
# conda environments:
#
chainer /home/user/anaconda2/envs/chainer
py27 /home/user/anaconda2/envs/py27
py35 /home/user/anaconda2/envs/py35
tensorflow /home/user/anaconda2/envs/tensorflow
root * /home/user/anaconda2
conda remove -n py27 --all
conda info -e
# conda environments:
#
chainer /home/user/anaconda2/envs/chainer
py35 /home/user/anaconda2/envs/py35
tensorflow /home/user/anaconda2/envs/tensorflow
root * /home/user/anaconda2
user@MYPC:~$ source activate py27
discarding /home/user/anaconda2/bin from PATH
prepending /home/user/anaconda2/envs/py27/bin to PATH
(py27)user@MYPC:~$ conda info -e
# conda environments:
#
chainer /home/user/anaconda2/envs/chainer
py27 * /home/user/anaconda2/envs/py27
py35 /home/user/anaconda2/envs/py35
tensorflow /home/user/anaconda2/envs/tensorflow
root /home/user/anaconda2
Verwenden Sie für Windows "enable py27" zum Aktivieren
(py27)user@MYPC:~$ source deactivate
discarding /home/user/anaconda2/envs/py27/bin from PATH
user@MYPC:~$ conda info -e
# conda environments:
#
chainer /home/user/anaconda2/envs/chainer
py27 /home/user/anaconda2/envs/py27
py35 /home/user/anaconda2/envs/py35
tensorflow /home/user/anaconda2/envs/tensorflow
root * /home/user/anaconda2
Deaktivieren Sie bei Fenstern mit "Deaktivieren"
Details finden Sie im folgenden Dokument conda document
Testumgebung: OS: Ubuntu 14.04 LTE
Recommended Posts