在Biopython的情况下。 ImportError:没有名为seq的模块

时间:2015-12-25 20:50:47

标签: module biopython

我是python的首发。我安装了Biopython并进行了测试。

但是......效果不好。 enter image description here

我的模块在这里,我通过以下工作检查了它。

Python 2.7.10(默认,2015年10月17日,23:05:16) [dclwin上的[GCC 4.2.1兼容的Apple LLVM 7.0.0(clang-700.0.72)] 输入" help"," copyright"," credit"或"许可证"了解更多信息。

  
    
      

导入Bio       来自Bio.seq import seq       Traceback(最近一次调用最后一次):         文件"",第1行,in       ImportError:没有名为seq的模块

    
  

我不是......当然......在网上搜索请帮助我......

2 个答案:

答案 0 :(得分:0)

找出它的安装位置并添加pythonpath的路径

export PYTHONPATH=<path>
#my path was /Library/Python/2.7/site-packages
在你的〜/ .bashrc(linux)或〜/ .profile文件(osx)中

答案 1 :(得分:0)

Python区分大小写。 Biopython没有“seq”模块;您需要导入“Seq”而不是:

from Bio.Seq import Seq