1. ホーム
  2. python

[解決済み] django.core という名前のモジュールがありません。

2022-02-14 22:58:48

質問

古いDjangoをアンインストールした後、最新のDjangoバージョン1.0.2にアップデートしました。しかし、現在django-admin.pyを実行すると、以下のエラーが発生します。どうすればこれを解決できますか?

Traceback (most recent call last):
  File "C:\Python25\Lib\site-packages\django\bin\django-admin.py", line 2, in <module>
    from django.core import management
ImportError: No module named django.core

解決方法は?

django が PYTHONPATH にあることを確認する必要があります。

テストするには、単に import django をpythonのシェルから実行します。何も出力されないはずです。

ActivePython 2.5.1.1 (ActiveState Software Inc.) based on
Python 2.5.1 (r251:54863, May  1 2007, 17:47:05) [MSC v.1310 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import django
>>>

を経由してインストールした場合 setuptools ( easy_install を使用するか、または setup.py djangoに含まれている)、そして、あなたの site-packages を指定すると .pth ファイル( easy-install.pth , django.pth , ...) は、正しいフォルダを指しています。

HIH