gpt4 book ai didi

python - sys.path 修改不适用于 python2 但适用于 python3

转载 作者:太空宇宙 更新时间:2023-11-04 10:00:02 24 4
gpt4 key购买 nike

我正在尝试在脚本 'main/main.py' 中导入模块 foo.foo

目录结构如下:

chenjiasheng@ubuntu:~/code/test$ pwd
/home/chenjiasheng/code/test
chenjiasheng@ubuntu:~/code/test$ find
.
./foo
./foo/foo.py
./main
./main/main.py

而这两个文件的内容是:

chenjiasheng@ubuntu:~/code/test$ cat ./foo/foo.py 
pass
chenjiasheng@ubuntu:~/code/test$ cat ./main/main.py
import sys
sys.path.append('/home/chenjiasheng/code/test')
print(sys.path)
import foo.foo

“main/main.py”应该将“foo/”附加到其模块搜索路径。但是用 python2 运行它会得到 ImportError:

chenjiasheng@ubuntu:~/code/test$ python2 main/main.py 
['/home/chenjiasheng/code/test/main', '/usr/lib/python2.7', '/usr/lib/python2.7/plat-x86_64-linues', '/usr/lib/python2.7/dist-packages/gtk-2.0', '/home/chenjiasheng/code/test']
Traceback (most recent call last):
File "main/main.py", line 4, in <module>
import foo.foo
ImportError: No module named foo.foo

相比之下,用python3运行就OK了:

chenjiasheng@ubuntu:~/code/test$ python3 main/main.py 
['/home/chenjiasheng/code/test/main', '/usr/lib/python3.4', '/usr/lib/python3.4/plat-x86_64-linu
chenjiasheng@ubuntu:~/code/test$

根据手册,https://docs.python.org/2/tutorial/modules.html#the-module-search-pathsys.path 变量应该适用于 python2 和 python3。

那我做错了什么?

最佳答案

您的 foo 包没有 __init__.py 文件来将其标识为包。在 Python 3 下,这仍然可以作为 namespace package 的一部分导入,但此功能未向后移植到 Python 2。添加一个空的 __init__.py 应该意味着您也可以在 Python 2 中导入该包。

关于python - sys.path 修改不适用于 python2 但适用于 python3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44043843/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com