I keep receiving this error when I try to do anything in Biopython. I am not sure how to change the path of Biopython since python and Biopython are in the same path. Im not sure what else I need to do.
Python 3.8.5 (v3.8.5:580fbb018f, Jul 20 2020, 12:11:27)
[Clang 6.0 (clang-600.0.57)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from Bio import SeqIO
>>>
>>> user_input = input("please input an Accession Number: ")
please input an Accession Number: NC_005816.gb
>>> file = SeqIO.read(user_input, "genbank")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site- packages/Bio/SeqIO/__init__.py", line 654, in read
iterator = parse(handle, format, alphabet)
File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site- packages/Bio/SeqIO/__init__.py", line 607, in parse
return iterator_generator(handle)
File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site- packages/Bio/SeqIO/InsdcIO.py", line 93, in __init__
super().__init__(source, mode="t", fmt="GenBank")
File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/Bio/SeqIO/Interfaces.py", line 47, in __init__
self.stream = open(source, "r" + mode)
FileNotFoundError: [Errno 2] No such file or directory: 'NC_005816.gb'