导入Python文件

发布于 2024-11-08 21:57:35 字数 353 浏览 2 评论 0原文

可能的重复:
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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

空宴 2024-11-15 21:57:35

您不导入文件,而是导入模块。相应修改sys.path,并执行import utils,例如

import sys
sys.path.append('../library')
import utils

You don't import files, you import modules. Modify sys.path accordingly, and do import utils, e.g.

import sys
sys.path.append('../library')
import utils
め七分饶幸 2024-11-15 21:57:35
import sys, os
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), '..', 'library')))

import utils

这将修改包含搜索文件的目录的 sys.path 变量。它还将确保即使您运行它也能正确找到它:

$ python the_file.py
$ python ../the_file.py
$ python /somewhere/over/the_file.py

这将适用于正在开发、测试、培训的内容。安装的文件不需要这样的构造。

import sys, os
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), '..', 'library')))

import utils

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:

$ python the_file.py
$ python ../the_file.py
$ python /somewhere/over/the_file.py

This will work for stuff under development, testing, training. Installed files will not need such a construct.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文