ImportError:以下行中没有名为location.models的模块:
from location.models import Zipcode
但是在我的项目中名为location的已安装app中有一个models.py,一个__init__.py和一个Zipcode模型.
此外,使用相同的命令可以在python shell中轻松导入模块.这可能是什么问题?谢谢你的想法!
最佳答案
原文链接:https://www.f2er.com/python/439578.htmlImportError:以下行中没有名为location.models的模块:
from location.models import Zipcode
但是在我的项目中名为location的已安装app中有一个models.py,一个__init__.py和一个Zipcode模型.
此外,使用相同的命令可以在python shell中轻松导入模块.这可能是什么问题?谢谢你的想法!