如何使用 .pth 文件添加 Python 导入路径
如果我将 *.pth 文件放入站点包中,则会出现 ImportError
。 我不知道如何通过创建 *.pth 文件来导入。
(指在 python 中导入)
If I put a *.pth file in site-packages it's giving an ImportError
.
I'm not getting how to import by creating a *.pth file.
(Refers to importing in python)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果将
.pth
文件放入包含路径的site-packages
目录中,Python 会搜索该路径进行导入。 所以我有一个 sth.pth 文件,它只包含:在该目录中有一些普通的 Python 模块:
这允许直接从其他脚本导入这些模块:
If you put a
.pth
file in thesite-packages
directory containing a path, python searches this path for imports. So I have asth.pth
file there that simply contains:In that directory there are some normal Python modules:
This allows to directly import these modules from other scripts: