django/python 脚本导入错误
我正在尝试运行此脚本,该脚本将为我的模型生成一些虚假数据,但遇到导入错误: ImportError: No module named apps.photos.models
这是我的项目设置:
Project Folder/
apps/
photos/
__init__.py
models.py
...
utils/
__init__.py
fake_data.py
...
__init__.py
manage.py
settings.py
urls.py
...
这些是我导入 fake_data.py
import os, sys
script_path = os.path.abspath(__file__)
sys.path.append(script_path)
import random
from loremipsum.generator import *
from apps.photos.models import Photo
我不知道为什么我无法导入照片模型。我是否正确地将文件添加到 python 路径?提前致谢。
I am trying to run this script that will generate some fake data for my model but I am running into an import error : ImportError: No module named apps.photos.models
This is my project setup:
Project Folder/
apps/
photos/
__init__.py
models.py
...
utils/
__init__.py
fake_data.py
...
__init__.py
manage.py
settings.py
urls.py
...
These are my imports for fake_data.py
import os, sys
script_path = os.path.abspath(__file__)
sys.path.append(script_path)
import random
from loremipsum.generator import *
from apps.photos.models import Photo
I dont know why Im not able to import the Photo model. Am im adding the file to the python path correctly? Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您希望能够导入
apps
,则必须将apps
的父目录添加到路径中。如果它是独立脚本,还请记住设置
DJANGO_SETTINGS_MODULE
环境变量。You would have to add the parent directory of
apps
to the path if you want to be able to importapps
.Also remember to set the
DJANGO_SETTINGS_MODULE
environment variable if it's a stand alone script.