我是Django的新手,每次尝试运行(myvenv) C:\Users\lenovo> python manage.py startapp blog
时,都会出现以下错误:
CommandError: 'blog' conflicts with the name of an existing Python module and cannot be used as an app name. Please try another name.
我做错什么了吗?
答案 0 :(得分:3)
您不能从项目上方的目录中运行命令。 您应该这样做:
cd projectName
python manage.py startapp blog