I am using the Enthought Python Distribution v7.0-2 (32-bit) a开发者_运维问答nd I am having trouble importing biopython. Does anyone know how to import biopython in EPD? I can import other libraries like numpy, matplotlib, etc. with no problem, but import biopython
is not recognized. What's going on?
Thanks in advance for the help.
You want:
import Bio
The tutorial documentation is a good place to get started learning about Biopython:
http://biopython.org/DIST/docs/tutorial/Tutorial.html#htoc6
精彩评论