Re: biopython

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • skip@pobox.com

    Re: biopython

    >>from Bio import Entrez
    Traceback (most recent call last):
    File "<stdin>", line 1, in ?
    ImportError: cannot import name Entrez

    Can you import Bio, e.g.:

    import Bio

    ? If not, check to see where it's installed and make sure the directory
    containing Bio (or Bio.py) is in sys.path, either by setting the PYTHONPATH
    environment variable before running Python or adding a Bio.pth file to a
    directory which is in sys.path so it can be found.

    Source code: Lib/site.py This module is automatically imported during initialization. The automatic import can be suppressed using the interpreter’s-S option. Importing this module normally appends...



    Skip
Working...