Installing Python on Windows
Windows
- For Windows you need to visit the official Python website, and then head to the Downloads page by clicking the link on the left. For Windows you should choose one of the MSI installers depending on whether you're running on a 32- or 64-bit platform.
- Download and run the installer.
- Choose a location for the Python distribution. The default will be in
C:\Python35 in the root of the C: drive. We don't recommended installing
Python into Program Files because the virtualized file store used to
isolate applications from each other in Windows Vista and later can interfere
with easily installing third-party Python packages. - On the Customize Python page of the wizard we recommend keeping the
defaults, which use less than 40 MB of space. - Once Python has been installed, you'll need to add Python to your system PATH environment variable. To do this, from the Control Panel choose System and Security, then System. Another way to get here easily is to hold down your Windows key and press the Break key on your keyboard. Using the task pane on the left choose Advanced System Settings to open the Advanced tab of the System Properties dialog. Click Environment variables to open the child dialog.
- If you have Administrator privileges you should be able to add the paths
C:\Python35 and C:\Python35\Scripts to the semicolon separated list of
entries associated with the PATH system variable. If not, you should be
able to create, or append to, a PATH variable specific to your user
containing the same value.
> python
Python 3.5.0 (v3.5.0:374f501f4567, Sep 13 2015, 02:27:37) [MSC v.1900 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>
Welcome to Python!