打开文件时如何在Importlib上指定Python版本?

时间:2019-02-03 12:09:25

标签: python python-3.x python-importlib

我一直在使用importlib从程序中打开其他文件。但是,每当我尝试打开另一个文件时,程序都会在Python 3.5中而不是Python 3.7中打开。

使用importlib库,可以通过任何方式明确指定要使用Python37打开吗?

当前代码:

spec = importlib.util.spec_from_file_location("trex.py", "./test/trex.py")
foo = importlib.util.module_from_spec(spec)
spec.loader.exec_module(foo)
foo.MyClass()

0 个答案:

没有答案