gpt4 book ai didi

python - 为 Django 项目设置 PYTHONPATH 的正确方法

转载 作者:太空宇宙 更新时间:2023-11-04 03:15:52 26 4
gpt4 key购买 nike

在我的文件 django app tests.py 中,我导入了另一个我创建的名为 helpers 的模块。 helperstests.py 处于同一目录级别。当我运行 ./manage.py tests 我得到这个错误:

$ ./manage.py test
Creating test database for alias 'default'...
E
======================================================================
ERROR: api.tests (unittest.loader.ModuleImportFailure)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/unittest/case.py", line 58, in testPartExecutor
yield
File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/unittest/case.py", line 577, in run
testMethod()
File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/unittest/loader.py", line 32, in testFailure
raise exception
ImportError: Failed to import test module: api.tests
Traceback (most recent call last):
File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/unittest/loader.py", line 312, in _find_tests
module = self._get_module_from_name(name)
File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/unittest/loader.py", line 290, in _get_module_from_name
__import__(name)
File "/Users/bli1/Development/projects/cherngloong/cherngloong/api/tests.py", line 8, in <module>
from helpers.APIHelpers import KeyGrabber
ImportError: No module named 'helpers'

这是我的项目结构:

enter image description here

基本上,tests.py 找不到helpers 模块。我不确定在 django 项目中避免此问题的最佳/正确/标准方法是什么

最佳答案

试试这个:

api.helpers.APIHelpers import KeyGrabber

在 Django 中,包通常以应用名称开头。你也可以试试 relative imports .

关于python - 为 Django 项目设置 PYTHONPATH 的正确方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36322192/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com