Reputation: 43
I have already installed Python 3.1.2 on my window 7(64bit) .However when I checked if its successfully installed using this command : python --version
I still got an error as "python" is not recognized..". Then I using the command setx PATH "C:\Python 31"
, error message shown setx is not recognized.."
I have checked that Python 31 was shown under my C drive and i have already open the PYTHON GUI window
Please i need help on where i get this wrong
Upvotes: 1
Views: 236
Reputation: 2146
I guess that you mean that you want to try and use it to see if it works and recognized from the command line.
Verify that your python bin folder is in your system path. You can follow this guide from msdn, or any other guide to add the python bin folder to the path environment variable.
The path you'll want to add is where python.exe
is located, probably at C:\Python31\bin"
or similar.
Upvotes: 1