我一直在使用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()