Difference between revisions of "Python"

From TSG Doc
Jump to navigation Jump to search
Line 3: Line 3:
 
=== Windows Installation Python 2.7 ===
 
=== Windows Installation Python 2.7 ===
  
You can download the '''Win32''' installer by clicking on the following link:
+
You can download the '''''Win32''''' installer by clicking on the following link:
 
https://www.python.org/downloads/
 
https://www.python.org/downloads/
  

Revision as of 12:50, 12 August 2014

Windows Installation

Windows Installation Python 2.7

You can download the Win32 installer by clicking on the following link: https://www.python.org/downloads/

Set Windows Environment Variables

Computer --> Properties --> Advanced settings --> Environment Variables. 

Add the following Path:

C:\Python27;C:\Python27\Lib\site-packages\;C:\Python27\Scripts\;

Windows Installation PIP package manager

Install Pip by executing get-pip.py you can get the file here: https://raw.github.com/pypa/pip/master/contrib/get-pip.py

Execute the following command:

python get-pip.py

Windows Installation Setup-Tools (easy_install)

Execute the command within CMD:

pip install -U setuptools

Windows Handlers

Check the Handlers by opening the Windows registry editor.

Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Python.CompiledFile\shell\open\command]
@="\"C:\\Python27\\python.exe\" \"%1\" %*"
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Python.File\shell\open\command]
@="\"C:\\Python27\\python.exe\" \"%1\" %*"
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Python.CompiledFile\shell\open\command]
@="\"C:\\Python27\\python.exe\" \"%1\" %*"
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Python.File\shell\open\command]
@="\"C:\\Python27\\python.exe\" \"%1\" %*"

Execute Python TestArgs.py

Execute the following script within the commandline:

python testArgs.py a.

You will see the following result:

number of argument:  2
 argv[0]: ./testArgs.py
 argv[1]: a

Linux Installation