1

pythonとdjangoを調べ始めたところです。Pythonとdjangoフレームワークの両方が正常にインストールされ、システムパスにpythonとdjango-admin.pyを追加できたと確信していますが、コマンドdjango-admin.py startproject My_Test_Siteを実行すると、フォルダ私は(チュートリアルに従って)新しいプロジェクトディレクトリを作成したいのですが、次のエラーが発生します:

私が得ているエラーのコマンドプロンプトのスクリーンショット

私は何が間違っているのですか?

4

2 に答える 2

2

これは Django エラーではありません。unicodedataPython 標準ライブラリ ( docs ) の一部であるPython モジュールが見つからないようです。この問題に関するバグ レポートもあることがわかりました (Windows 上の Python 2.7、こちらを参照)。一方、Python インストールを再インストールすると問題が解決したという報告もあります。あなたはそれを試してみることができます。

于 2012-06-07T17:45:16.897 に答える
0

notice the last line, it says import unicodedata, importError

im guessing you probably didnt install your django properly.

so reinstall it and check that django is in your "path", i believe django does this automatically when it installs but doesnt hurt to double check.

if reinstalling django still doesn't work, i suggest you uninstall python and django related stuff.

then install python, install pip, then use pip install django.

于 2012-06-07T21:35:24.133 に答える