To install another version of Python (e.g., Python 3.5.2), when using Anaconda for one version of Python (e.g., Python 2.7), you can do the following on the Anaconda prompt:
First, create a new Conda environment and install Python 3.5.2 with anaconda:
conda create -n py352 python=3.5.2 anaconda
Once complete, if you want to access IDLE of Python 3.5.2 quickly on Windows:
Go to the "C:\..Anaconda\envs\py352"
folder in Explorer
Create a shortcut for pythonw.exe
file located on that folder.
Move the shortcut to your Desktop or any other location easily accessible
Right-click the shortcut, go to Properties, and change the target field in the Shortcut tab from
C:\....\Anaconda\envs\py352\pythonw.exe
to
C:\...\Anaconda\envs\py352\pythonw.exe "C:\...\Anaconda\envs\py352\Lib\idlelib\idle.pyw"
C:\Anaconda3\pythonw.exe "C:\Anaconda3\Lib\idlelib\idle.pyw"
. Maybe something similar may work for you – Hymnology