AD Stark
AD Stark

Reputation: 11

Django command "django-admin startmyproject" not working?

The above mentioned command is not working. Showing the result after giving command - No Django settings specified. Unknown command: 'startmyproject'. Did you mean startproject? Type 'django-admin help' for usage.

Upvotes: 0

Views: 3017

Answers (3)

Joflix Owuor
Joflix Owuor

Reputation: 21

I think you need to run this django-admin startproject 'your peoject name goes here' This should be just after activating virtual and installing django

Upvotes: 0

Mukul Anand
Mukul Anand

Reputation: 626

Your command should be startproject. Also, have u defined a django settings file for ur django installation. Try out the steps in this documentation to make this work correctly.

https://docs.djangoproject.com/en/2.1/topics/settings/

Upvotes: 0

Tomatosoup
Tomatosoup

Reputation: 106

Unknown command: 'startmyproject'. Did you mean startproject?

The result is pretty self-explanatory, no such command exist. It's django-admin startproject

https://docs.djangoproject.com/en/dev/ref/django-admin/#startproject

Upvotes: 1

Related Questions