--- layout: default title: Installing Python ---
Step 1: Download the latest Python 3 installer for your operating system at https://www.python.org/downloads
Once Python is intalled, you need to ensure that you can run it from the command line, that is, that the python3 executable is on your path. If you run Linux, you probably don't need help with this. If you run Mac OS X it just works. If you run Windows, follow these steps:
Path variable under system variables (not user variables). Select it and click the Edit.. button below.C:\Python34;. The semicolon delimits directory entries in the path. Click OK.C:\Python34;.
/Applications/Utilities/Terminal.app in the Finder. You should drag Terminal to your dock -- you'll use it often.cmd.exepython3 --version. You should get a response like Python 3.4.0. Note: on Windows the Python 3 command is just python (without the 3).
The prompt for the OS shell typically ends with $ on Unix, usually following the form user@computer-name:pwd $ where pwd means present working directory.
The prompt for the Python shell is >>>, three greater-than symbols.