Harvard:Biophysics 101/2007:Python
From OpenWetWare
(Difference between revisions)
m (→BioPython) |
m (→Python) |
||
| Line 11: | Line 11: | ||
'''Documentation''' | '''Documentation''' | ||
| - | *[http://proquest.safaribooksonline.com.ezp1.harvard.edu/0596002815 Learning Python] (for beginners) | + | *[http://wiki.python.org/moin/BeginnersGuide Beginner's Guide] (includes instructions for non-programmers) |
| + | *[http://proquest.safaribooksonline.com.ezp1.harvard.edu/0596002815 Learning Python] (Online textbook for beginners) | ||
*[http://diveintopython.org/toc/index.html Dive Into Python] (for experienced programmers) | *[http://diveintopython.org/toc/index.html Dive Into Python] (for experienced programmers) | ||
*[http://docs.python.org/tut/tut.html Python Tutorial] | *[http://docs.python.org/tut/tut.html Python Tutorial] | ||
Revision as of 22:28, 6 February 2007
Python
Installation
Documentation
- Beginner's Guide (includes instructions for non-programmers)
- Learning Python (Online textbook for beginners)
- Dive Into Python (for experienced programmers)
- Python Tutorial
- Perl-to-Python
- Python Lib Ref
- Py Reg Ex
BioPython
Pre-installation dependencies
- Python (see above)
- mxTextTools (direct link to Windows installer)
- Numeric 24.2 (direct link to Windows installer)
Windows Installation
OS X Installation
- Install xcode tools (either download ~1GB from the developer site) or install from the OS X installation DVD.
- Download the three dependencies and extract them (double click on the file, or use "tar -xzf filename.tar.gz" for tar.gz files, or "tar -xf filename.tar")
- For each of the three packages, use a terminal window (/Applications/Utilities/Terminal) to enter the package directory (created when you extracted the files) and run the following commands:
python setup.py build python setup.py install
- Download and extract BioPython source file
- From the extracted directory, run the following commands:
python setup.py build python setup.py test python setup.py install
Documentation



