Python:如何获得不同版本的python来访问相同的模块?

时间:2016-11-30 00:46:51

标签: python python-2.7 python-3.x scitools

我使用的是mac,我有两个版本的python(2.7和3.5)。我使用pip安装了scitools,而import from scitools import *使用2.7而不是3.5。我想知道这是因为链接还是什么的。我已经包含了截图。谢谢!

enter image description here

编辑:

pip3 install scitools给出:

enter image description here

2 个答案:

答案 0 :(得分:2)

scitools需要Python 2.7(来源:github)。它显然没有得到积极维护,所以不要等待Python 3的支持。

答案 1 :(得分:2)

正如您在https://github.com/hplgit/scitools上所看到的,模块依赖关系是Python2.7和numpy。