私は Windows を使用しており、Appsという名前の共通フォルダー内に新しいアプリを作成しようとしています。myAppフォルダーは既にApps内に存在します。私はプロジェクトのルートから実行しています:
python manage.py startapp myApp Apps\myApp
そして私は得る:
Error: 'Apps\\myApp' is not a valid app name. Please use only numbers, letters and underscores.
その二重のバックスラッシュの理由がわかりません。念のため、スラッシュも試しました。
python manage.py startapp myApp Apps/myApp
そして私はこれを得る:
Error: 'myApp' conflicts with the name of an existing Python module and cannot be used as an app name. Please try another name.
Windows の問題なのか Python の問題なのかわかりません。