Nour Hany
Nour Hany

Reputation: 9

How can I install biopython on anaconda? I tried using "pip install biopython" but it gives me errors

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

Answers (1)

Peter
Peter

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

Related Questions