python相对导入的问题

发布于 2024-12-01 07:39:21 字数 450 浏览 0 评论 0原文

我正在 Windows 上运行以下项目,具有以下目录结构。

Project\Src\Lib\General\Module_lib.py  
Project\Src\executables\example.py

现在,我想在 example.py 中导入 Module_lib.py 。请帮助我如何解决这?

example.py 的内容:

from ..lib.general.Module_lib import Module_lib  

输出:

Value Error : Attempted relative import in non-packages

实现此目的的最佳方法是什么?

I am running the following project on windows with the following directory structure..

Project\Src\Lib\General\Module_lib.py  
Project\Src\executables\example.py

Now , I want to import Module_lib.py in example.py.. Please help me how to solve this?

content of example.py :

from ..lib.general.Module_lib import Module_lib  

output :

Value Error : Attempted relative import in non-packages

what is the best way to achieve this ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

凉城已无爱 2024-12-08 07:39:21

Project\Src\Lib\General 添加到 PYTHON_PATH 以便运行时可以找到它。这是我能想到的唯一真正方便的解决方案。

您可以在此处找到添加 python 路径的方法:
https://stackoverflow.com/questions/6318156

在脚本中执行此操作是也有可能:

import sys
sys.path.append(os.path.dirname(__file__))

这不能开箱即用,因为 dirname 调用是针对您当前的文件。要解决此问题,您可以多次调用它来向上移动目录。我希望这已经足够清楚了。

dir1 = os.path.dirname(__file__)
dir1up = os.path.dirname(dir1)
dir1upup = os.path.dirname(dir1up)

Add Project\Src\Lib\General to your PYTHON_PATH so the runtime can find it. That's the only real convenient solution I can think of.

You can find a way of adding your python path here:
https://stackoverflow.com/questions/6318156

Doing it in script is also possible:

import sys
sys.path.append(os.path.dirname(__file__))

This won't work out of the box because the dirname call is to your current file. To fix this you can call it multiple times to move up directories. I hope this is clear enough.

dir1 = os.path.dirname(__file__)
dir1up = os.path.dirname(dir1)
dir1upup = os.path.dirname(dir1up)
李白 2024-12-08 07:39:21

您需要定义 PYTHONPATH 环境变量,以便它包含您希望 Python 在其中查找模块的所有目录。假设您的源代码树位于 C: 驱动器的根目录中,您有两个选择:

  1. 将所有叶目录添加到 PYTHONPATH 并直接导入模块,例如:

    set PYTHONPATH=C:\Project\Src\Lib\General
    

    在这种情况下,您可以直接导入模块:

    导入Module_lib
    
  2. 通过添加名为 __init__ 的空文件来制作目录的包。 py,这样您就可以使用限定名称来导入模块,并且可以减少添加到 PYTHONPATH 中的目录。你可以这样做:

    设置 PYTHONPATH=C:\Project\Src
    

    在这种情况下,您可以使用合适的限定名称导入模块:

    导入 Lib.General.Module_lib
    

    要实现此目的,您需要将名为 __init__.py 的空文件添加到 C:\Project\Src\Lib 和 C:\Project\Src\Lib\General 目录中。

You need to define the PYTHONPATH environment variable so that it contains all the directories where you want Python to look for your modules. Assuming that your source tree is in the root of the C: drive you have two options:

  1. Add all the leaf directories to PYTHONPATH and import your modules directly e.g.:

    set PYTHONPATH=C:\Project\Src\Lib\General
    

    In this case you can import your module directly:

    import Module_lib
    
  2. Make packages of your directories by adding empty files named __init__.py, so that you may use qualified names to import your modules and have less directories to add to your PYTHONPATH. You could do something like:

    set PYTHONPATH=C:\Project\Src
    

    In this case you can import your module with a suitable qualified name:

    import Lib.General.Module_lib
    

    To achieve this you need to add an empty file named __init__.py to the C:\Project\Src\Lib and the C:\Project\Src\Lib\General directories.

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