windows - Python Command Prompt -
i have both python 3 python 2 version installed in windows pc. on calling variable name 'py' in cmd, python2.7 shows though have mentioned python34 folder path in local environment path values. please recommend fix.
you can resolve setting environment variable
set py_python=3
or editing py.ini in applications data folder , adding following line:
[defaults] python=3
typically, application directory found in c:\documents , settings\[username]\application data
or c:\users\[username]\appdata\local\
depending on windows version.
Comments
Post a Comment