我编写了一个模块(mymodule32.py),其中包含一个仅支持 32 位 Python 的库。我想将此模块导入 64 位 Python 文件 (main64.py)。但是经过搜索,我意识到如果我在 64 位 Python 中导入模块,它将使用 64 位解释器进行编译。我将在 main64.py 中导入 mymodule32.py,但我想用 32 位解释器来解释它。
我安装了 Python 3.5 64 位,另外我在 Anaconda 虚拟环境中安装了名为 py35_32 的 Python 3.5 32 位。我在下面写了我想要的伪代码(当然它不起作用)。
import(interpreter = py35_32) mymodule32