Reputation: 1
I installed both 'Python 3.7' and 'Anaconda', with adding the installation directories into environmental variable 'PATH'. And now when calling 'python' in windows' cmd, it turned out to be the 'Anaconda' one. Is there any possibility to call another one directly in cmd? Thanks a lot!
Upvotes: 0
Views: 41
Reputation: 36
Try launching it through C:\Python37\python.exe
from cmd. Basically the path is the installation folder of Python 3.7.
Upvotes: 1