Python: Difference between revisions

From LPTMS Wiki
Jump to navigation Jump to search
No edit summary
Line 5: Line 5:
* [http://www.euroscipy.org euroscipy] (scientific python community)
* [http://www.euroscipy.org euroscipy] (scientific python community)
* [http://scipy-lectures.github.com Getting started with scipy]
* [http://scipy-lectures.github.com Getting started with scipy]
* [http://www.unixgarden.com/index.php/programmation/python-comme-langage-scientifique python comme langage scientifique]


== Libraries ==
== Libraries ==

Revision as of 12:58, 2 November 2011

documentation

Libraries

Miscellaneous

Tips

  • adding a path to a directory containing your module files

<source lang="py"> import sys sys.path += [ "/home/username/bin/Python" ] </source>