Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将我的 python 项目的项目根添加到PYTHONPATH. 现在我的模块的导入在CLIpython bot 中工作,而不是在 python 脚本中。
PYTHONPATH
CLI
我该如何解决?
使用 -v 选项调用您的脚本。
python -v yourscript.py
这将跟踪所有导入语句并查找或执行 grep 以获取您的项目名称。如果它不在其中,那么它根本没有添加到您的 python 路径中,或者您正在运行不同的 python 解释器。