Hi,
I tried installing biopython 1.64 on my windows computer. Python version I use is - 3.3.4. I installed numpy1.8.2 too. When I check how they are working(according to the installation pdf obtained from the biopython site) it gives me the following errors. How can this be solved?
>>> import Bio
>>> print(Bio._version_)
Traceback (most recent call last):
File "<pyshell#1>", line 1, in <module>
print(Bio._version_)
AttributeError: 'module' object has no attribute '_version_'
>>> from Numeric import *
Traceback (most recent call last):
File "<pyshell#2>", line 1, in <module>
from Numeric import *
ImportError: No module named 'Numeric'
>>> from Bio.Seq import Seq
>>> from Bio.Alphabet.IUPAC import unambiguous_dna
>>> new_seq = Seq('GATCAGAAG', unambiguous_dna)
>>> new_seq[0:2]
Seq('GA', IUPACUnambiguousDNA())
>>> from Bio import Translate
Traceback (most recent call last):
File "<pyshell#7>", line 1, in <module>
from Bio import Translate
ImportError: cannot import name Translate
>>>
I tried installing biopython 1.64 on my windows computer. Python version I use is - 3.3.4. I installed numpy1.8.2 too. When I check how they are working(according to the installation pdf obtained from the biopython site) it gives me the following errors. How can this be solved?
>>> import Bio
>>> print(Bio._version_)
Traceback (most recent call last):
File "<pyshell#1>", line 1, in <module>
print(Bio._version_)
AttributeError: 'module' object has no attribute '_version_'
>>> from Numeric import *
Traceback (most recent call last):
File "<pyshell#2>", line 1, in <module>
from Numeric import *
ImportError: No module named 'Numeric'
>>> from Bio.Seq import Seq
>>> from Bio.Alphabet.IUPAC import unambiguous_dna
>>> new_seq = Seq('GATCAGAAG', unambiguous_dna)
>>> new_seq[0:2]
Seq('GA', IUPACUnambiguousDNA())
>>> from Bio import Translate
Traceback (most recent call last):
File "<pyshell#7>", line 1, in <module>
from Bio import Translate
ImportError: cannot import name Translate
>>>
Comment