Installation
Python is supported by most operating systems. Unless you are using Windows, your operating system likely already has Python installed. We are using Python 2.7 because most tools used for animation, VFX, or games uses Python 2.7. The only exception that I know of is Blender and Natron, which both uses Python 3.
Windows Installation
- Click on the link here. Pick the download labeled
Latest Python 2 Release - Python 2.7.x
Thex
is the latest minor version. - Select the right Windows version for your computer. If you have a 32 bit Windows, then select the
Windows x86 MSI installer
. If you have a 64 bit Windows, select theWindows x86-64 MSI installer
. If you don't know which version you have, the 32 bit one is usually a safe bet. - Find where the installer was saved to your hard drive, or if you simply ran the installer from your internet browser, go through the installation steps.
- (Optional) Add Python to the
PATH
environment variable. There's a tutorial here that outlines how to add things to the environment variables. Before you add Python to the environment variables, you will want to find where yourpython.exe
executable is. It is most likely inC:\Python27
. Add that path to thePATH
environment variable.
Mac OSX Installation
- Click on the link here. Pick the download labeled
Latest Python 2 Release - Python 2.7.x
Thex
is the latest minor version. - Select the right Mac OS X version for your computer. If you have a 32 bit Mac OS X, then select the
Mac OS X 32-bit i386/PPC installer
. If you have a 64 bit Mac OS X, select theMac OS X 64-bit/32-bit installer
. If you don't know which version you have, the 32 bit one is usually a safe bet. - Find where the installer was saved to your hard drive, or if you simply ran the installer from your internet browser, go through the installation steps.
Linux Installation
Python is most likely installed on your machine. Go to your terminal and type python
. You should see something like this:
Python 2.7.5 (default, Jun 24 2015, 00:41:19)
[GCC 4.8.3 20140911 (Red Hat 4.8.3-9)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>>
If you do, type quit()
, and then press enter. We'll play around in that space more later.
Testing the Install
If you are in Windows and didn't add the Python path to the PATH
environment variable, then search for and run IDLE in the Windows Start Menu. If you added Python to the PATH
environment variable, or not on Windows, then open your command shell and type python
. You should see something like this:
Python 2.7.5 (default, Jun 24 2015, 00:41:19)
[GCC 4.8.3 20140911 (Red Hat 4.8.3-9)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>>
If you do, then congradulations! You have Python successfully installed. Type quit()
and press enter.
Next Steps
Now that we have Python installed, we are ready to learn about Python's types.