导入Python文件
可能的重复:
Python 包结构
你好, 我正在寻找导入一个位于主文件根目录下的子目录中的 python 文件。例如
import ../library/utils.py
,当我将其放入代码并运行它时,我收到编译错误。
有没有办法包含主文件根目录下的文件,或者它必须位于根目录的子目录中?
感谢您的帮助。
Possible Duplicate:
Python package structure
Hello,
I'm looking to import a python file that I have in a sub-directory that is below the root of my main file. e.g.
import ../library/utils.py
When I put that into my code and run it I get a compile error.
Is there a way to include files from below the main file root directory or does it have to be in a sub-directory in the root?
Thanks for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不导入文件,而是导入模块。相应修改
sys.path
,并执行import utils
,例如You don't import files, you import modules. Modify
sys.path
accordingly, and doimport utils
, e.g.这将修改包含搜索文件的目录的 sys.path 变量。它还将确保即使您运行它也能正确找到它:
这将适用于正在开发、测试、培训的内容。安装的文件不需要这样的构造。
This will modify the sys.path variable that contains the directories to search for files. It will also make sure that it will find it properly even if you run it as:
This will work for stuff under development, testing, training. Installed files will not need such a construct.