Saturday, August 31, 2013

Python Getting Started


Simple Note

Steps

1. Go to download page (http://www.python.org/download/ for now) and download what you need (I choose Python 3.3.2 Windows x86 MSI Installer).

2. Execute downloaded file to install Python (Assume you installed it at C:\Python33).

3. Open command line and
    * Option A: go to the installed location (Assume C:\Python33)
    * Option B: type set path=%path%;C:\Python33 (for Windows) to make it accessible anywhere

4. Type "python", press Enter, type "help()", press Enter.



5. Go to tutorial page displayed in help message.

6. Go through tutorial to learn it.

No comments:

Post a Comment