Hello there, I am new to Pythonista and it’s been great so far but i am having problems importing the biopython package.
I have installed it using pip but when I run the following import I get this:
from Bio import SeqIO
Traceback (most recent call last):
File "", line 1, in
File "/private/var/mobile/Containers/Shared/AppGroup/60AB303A-8972-4389-BAB8-077C39F8243A/Pythonista3/Documents/site-packages-2/Bio/SeqIO/init.py", line 375, in
from Bio.Align import MultipleSeqAlignment
File "/private/var/mobile/Containers/Shared/AppGroup/60AB303A-8972-4389-BAB8-077C39F8243A/Pythonista3/Documents/site-packages-2/Bio/Align/init.py", line 22, in
from Bio.Align import _aligners
ImportError: cannot import name _aligners
What am I doing wrong? I used this package with Anaconda and spyder before with no problems
Many thanks!
Thomas