You are on page 1of 1

Install Python

Please follow the Python installation instructions for the operating system of your choice.

Windows
Please visit the Python 3.4 page and download the MSI installer. After downloading the .msi file, run it and follow
the instructions to install Python.
On the second screen of the installation wizard (the Customize screen), make sure to enable the Add python.exe to
the Path option.
To verify that Python 3 installed correctly, open up your command prompt (Start -> Run -> cmd) and run:
C:\> python3 --version
Python 3.4.1

Linux
It is very likely you already have Python installed. To check that you have Python installed, open a console and type:
$ python3 --version
Python 3.4.1

If you do not have Python 3 installed, you should install it using your Linux distributions package manager.
To install Python 3 on Ubuntu:
$ sudo apt-get install python3.4

To install Python 3 on Fedora (up to 21):


$ sudo yum install python3.4

To install Python 3 on Fedora (22+):


$ sudo dnf install python3.4

Mac
Please visit Python 3.4 page and download the 64-bit
python-3.4.3-macosx10.6.pkg, run it to install Python.

Python

installer.

Verify that Python 3 was installed correctly by opening the Terminal application and running:
$ python3 --version
Python 3.4.1

After

downloading

You might also like