Biopython的安装(使用pip)

2020-02-19

1、pip安装biopython

python        #查看确认python已安装

pip install biopython        #1)使用pip安装biopython;

                                        #2)然后返回顺便给我安装了biopython和numpy;

                                        #3)最后安装在我的环境下面的./lib/python3.7/site-packages这里面(两个都是)

python        #调出python

2、 验证Biopython安装

print(Bio.__version__)        #输入,如果返回版本信息,证明安装没问题

红色的错了是因为我没有打括号,黄色的才正确

参考:

1、https://www.yiibai.com/biopython/biopython_installation.html (就是按照这个安装的)

2、安装生物信息学软件-Biopython https://www.cnblogs.com/pxy7896/p/5989074.html (当是root时,可以参考

3、BioPython安装与入门 https://blog.csdn.net/u012325865/article/details/82254683(主要看biopython的简介、功能有哪些

你可能感兴趣的:(Biopython的安装(使用pip))