1
私のMacの横にpython 2.7がインストールされています。私はDjango v1.9.4を使ってプロジェクトを実行しています。 残念ながら、manage.py runserver
はサービス名のモジュールが見つからなかったため、実行中にエラーが発生しました。シェルからImportError:サービス名がDjangoのモジュールがありません
:私はこのモジュールをインストールするには、ここで何をすべきか思ったんだけど
Traceback (most recent call last):
File "./manage.py", line 10, in <module>
execute_from_command_line(sys.argv)
File "/Library/Python/2.7/site-packages/django/core/management/__init__.py", line 353, in execute_from_command_line
utility.execute()
File "/Library/Python/2.7/site-packages/django/core/management/__init__.py", line 327, in execute
django.setup()
File "/Library/Python/2.7/site-packages/django/__init__.py", line 18, in setup
apps.populate(settings.INSTALLED_APPS)
File "/Library/Python/2.7/site-packages/django/apps/registry.py", line 85, in populate
app_config = AppConfig.create(entry)
File "/Library/Python/2.7/site-packages/django/apps/config.py", line 90, in create
module = import_module(entry)
File "/usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/python2.7/importlib/__init__.py", line 37, in import_module
__import__(name)
ImportError: No module named services
。
あなたは 'どのようなものを見てsettings.INSTALLED_APPS'ん? –