cannot open manage.py after installing django

半城伤御伤魂 提交于 2019-12-03 08:16:39

You're not in the proper directory...In the case you described, you should have:

  1. mkdir newproject (not sure why you're doing this...but we'll continue with it)
  2. cd newproject
  3. django-admin.py startproject newproject
  4. cd newproject ← A key missing part from what you did. You need to change into the directory where manage.py resides. Verify it by using ls at the command prompt after switching into the directory.
  5. python manage.py runserver

Use ls often, if you need, to double check where you are in the directory tree.

For me it was because the manage.py didn't get created and the problem was that:

In windows instead of typing "django-admin.py" just type "django-admin" and it will create the manage.py file

The reason of this problem is because you're in the first project directory "parent directory", and you have to go to your project "newproject" that has the manage.py file.

The way to this is simple:

  1. cd "name of your project", E.g. cd newproject

  2. python manage.py runserver

terminatorash2199

you need to change your directory to the directory of the project.

  1. open your environment by typing activate environment_name
  2. change the directory to the folder in which you want to create the project by cd Folder_Name
  3. then create your project by django-admin startproject Project_Name
  4. then change the directory to your project folder
  5. if you also want to create an app then typepython manage.py startapp App_name
  6. to confirm if it works type python manage.py runserver, then you should get a link in the terminal. copy and paste that link in the browser and you should see a successful page.

You are not in the correct directory. You need to do cd newproject and the execute your runserver command.

That can happen because manage.py doesn't have permissions. Check the existence of manage.py throughout newproject, If exist you can fix it with:

$cd newproject
$chmod +x manage.py

Finally, try to execute python manage.py runserver

Andres Quiroga

I was having the same problem, when Windows 10 changed credentials, Docker lost the access to drives. The fix for this issue, I reset the credentials in docker-desktop > shared Drives > reset credentials at bottom.

can't open file 'manage.py': [Errno 2] No such file or directory"

here is the solution

step 1: command -> django-admin startproject project_name

step 2: command -> cd project_name

step 3: command -> python manage.py startapp app_name

try it may fix your problem

Giggity

You need to include a . after you create the project.

Eg: django-admin.py startproject newproject .

This will allow you to run python manage.py runserver from where you are.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!