Reputation: 9
pip install biopython
Note: you may need to restart the kernel to use updated packages. 'D:\NU\Second' is not recognized as an internal or external command, operable program or batch file.
Upvotes: 0
Views: 337
Reputation: 12345
With Anaconda always prefer conda over pip:
conda install -c anaconda biopython
And don't forget to activate your environment before you use it!
Upvotes: 1