Anaconda integrates python with a variety of common tools.
There are currently two versions, each containing python2.7 and python3.5, and automatically adding environment variables. Go to the official website to download the installation package.
1. Install additional modules. Conda install XXX, or pip install xxx
2. Install the 2 and 32 versions. Because it is found that some packages do not support 3, such as Basemap and Dateutil.
After the test is installed, python-v or 3.5.1, do not know how to use, unless with Pycharm, new project can choose different version (registration method: http://www.cnblogs.com/evlon/p/4934705.html).
Swap with the virtual environment method. Perform:
Conda create-n Python2 python=2.7,
The Python2 directory is created under the Envs directory under the Anaconda installation directory. Prompt when installation is complete:
To activate the environment, use:
Activate Python2
If not activated, specify the version when executing the command, such as Conda install-n Python2 dateutil
Reference article: http://www.jb51.net/article/51651.htm
Anaconda Installation (Windows)