我的问题是关于 Mac 上的 Python 路径设置:
当我打开终端时,进入项目的文件夹,然后输入以下代码:
$python manage.py shell
>>> from polls.models import Poll, Choice
一切都好。但是,在我输入一些其他代码后,shell 崩溃了。我不知道为什么。所以我打开了 Python IDLE,并输入了相同的代码:
>>> from polls.models import Poll, Choice
Traceback (most recent call last):
File "<pyshell#10>", line 1, in <module>
from polls.models import Poll, Choice
ImportError: No module named polls.models
有人告诉我,因为路径设置不正确。所以我想使用 Python IDLE 而不是终端,如何手动设置正确的路径?