Harvard:Biophysics 101/2007:Python: Difference between revisions

From OpenWetWare
Jump to navigationJump to search
(→‎Python: - charming python link)
 
Line 10: Line 10:
*[http://diveintopython.org/installing_python/index.html alternative instructions]
*[http://diveintopython.org/installing_python/index.html alternative instructions]


'''Documentation'''
'''Reading Material'''
*[http://docs.python.org/tut/tut.html Python Tutorial]
*[http://docs.python.org/tut/tut.html Python Tutorial]
*[http://www.python.org/dev/peps/pep-0008/ Python Style Guide]
*[http://www.python.org/dev/peps/pep-0008/ Python Style Guide]
Line 20: Line 20:
*[http://www.amk.ca/python/howto/regex/ Py Reg Ex] (regular expressions)
*[http://www.amk.ca/python/howto/regex/ Py Reg Ex] (regular expressions)
*[http://www.python.org/doc/2.4.1/lib/lib.html Python Lib Ref]
*[http://www.python.org/doc/2.4.1/lib/lib.html Python Lib Ref]
*[http://tinyurl.com/2mvzs7 Charming Python] (advanced topics)


==BioPython==
==BioPython==

Latest revision as of 17:37, 19 April 2007

Biophysics 101: Genomics, Computing, and Economics

Home        People        Schedule        Project        Python        Help       

Python

Installation

Reading Material

BioPython

Documentation

Pre-installation dependencies

Windows Installation

OS X Installation

python setup.py build
python setup.py install
  • Download and extract BioPython source file (latest tar.gz file)
  • From the extracted directory, run the following commands:
python setup.py build
python setup.py test
python setup.py install

Linux