A good way is to work with conda environments.
Add the path where conda.exe to PATH temporarily:
set PATH=C:\my\path\to\conda;%PATH%
Create a new environment:
conda create -n py36 python=3.6
Activate it:
activate py36
Now the prompt should change to py36 , and everything should work, since all the necessary paths are set. You need to install all your packages necessary for your project while this environment is activated. When this is done, disable it using deactivate .
source share