Python: Difference between revisions

From 太極
Jump to navigation Jump to search
No edit summary
No edit summary
Line 12: Line 12:
<pre>
<pre>
python setup.py install
python setup.py install
</pre>
= How to run a python code =
<pre>
python mypython.py
</pre>
</pre>

Revision as of 15:31, 1 March 2013

Install a new module

The Python Package Index (PyPI) is the definitive list of packages (or modules

sudo apt-get install python-serial

If a package has been bundled by its creator using the standard approach to bundling modules (with Python’s distutils tool), all you need to do is download the package, uncompress it and type:

python setup.py install

How to run a python code

python mypython.py