|
|
|
|
|
by darkarmani
4839 days ago
|
|
It will install itself without messing with your system python. In addition, you can then use the conda command to install a number of versions: conda create -n py3 python=3.3 anaconda
conda create -n py27 python=2.7 anaconda
That will create environments envs/py3 and envs/py27 inside your anaconda install directory. |
|