Django教程在从命令行python导入模型时抛出ImportError

vshtjzan  于 2023-02-14  发布在  Go
关注(0)|答案(1)|浏览(103)

给定教程部分创建模型中的确切代码

民意调查/models.py

from django.db import models

class Question(models.Model):
    question_text = models.CharField(max_length=200)
    pub_date = models.DateTimeField('date published')

class Choice(models.Model):
    question = models.ForeignKey(Question, on_delete=models.CASCADE)
    choice_text = models.CharField(max_length=200)
    votes = models.IntegerField(default=0)

为什么我不能from .models import Question

[polls]$ python
Python 3.8.12 (default, Dec  4 2021, 10:54:00) 
[GCC 11.1.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from .models import Question
  Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: attempted relative import with no known parent package

另外,教程运行良好,所以是的**init.py存在于polls**目录中(由django教程创建)。许多相关问题都没有帮助我,因此请不要作为重复关闭。

vh0rcniy

vh0rcniy1#

尝试from polls.models import Question,因为在使用相对导入时,它取决于当前目录。
如果你在正确的目录下,使用django命令./manage.py shell来测试你的试用版,它应该可以工作,因为./manage.py shell与你当前的django项目设置兼容。

相关问题