Python:如何让python的不同版本访问相同的模块?
Python: how to get different versions of python to access the same modules?
我使用 mac,我有两个版本的 python(2.7 和 3.5)。我使用 pip
安装了 scitools,import from scitools import *
适用于 2.7 但不适用于 3.5。我想知道是否是因为链接或其他原因。我附上了截图。谢谢!
编辑:
pip3 install scitools
给出:
scitools
需要 Python 2.7(来源:github)。它显然没有得到积极维护,所以不要等待 Python 3 支持。
正如您在 https://github.com/hplgit/scitools 上看到的那样,模块依赖项是 Python2.7 和 numpy。
我使用 mac,我有两个版本的 python(2.7 和 3.5)。我使用 pip
安装了 scitools,import from scitools import *
适用于 2.7 但不适用于 3.5。我想知道是否是因为链接或其他原因。我附上了截图。谢谢!
编辑:
pip3 install scitools
给出:
scitools
需要 Python 2.7(来源:github)。它显然没有得到积极维护,所以不要等待 Python 3 支持。
正如您在 https://github.com/hplgit/scitools 上看到的那样,模块依赖项是 Python2.7 和 numpy。