Installing Python on Windows
Actually a rather simple process despite previous unfortunate attempts.
Download the installer from python, of course. (3.4 is the current version at the time of writing.) There are two varying versions that are being maintained. But since for the purpose of the library that I was using, 3.4 is choice.
Just install the package like a normal installer.
After which, press windows and type cmd in the search bar. This should bring up the command prompt.
Type python in the prompt -- if it says file/direction not found, go on to the next step.
Press windows and type 'system'. Select the 'System' under Control Panel.
This should bring up a dialog box. Select 'Advanced system settings' on the left sidebar. Go to 'Environment Variables'.
Under "User variables for Admin" if path is not created, press 'New..'
For variable - path
Value - C:\Windows\System32;C:\Python34;C:\Python34\python.exe;C:\Python34\Scripts;
Save changes and return to command prompt. It should run properly when you type python.
To run PIP
The declaration of the above system environment variables makes this possible already. Simple type 'python -m pip' in the command prompt.













