>>from Bio import Entrez
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.
Skip