[Fixed]-Django-admin is not working Django 1.11 Python 3.6

1đź‘Ť

âś…

Exprator’s answer worked for me. I installed Django while inside virtualenv and did “django-admin –version”, it works fine then I did the code: “django-admin startproject mysite .” (The period is included) and it worked. Finally the manage.py showed up inside the project folder.

👤Arvie San

0đź‘Ť

in windows inside a virtual environment you need to invoke the Python interpreter with django-admin.py:

python django-admin.py startproject mysite
👤Mani Shirvani

0đź‘Ť

If you are using virtualenv with python3, you may want to try out the following:

(virtualenv) $> python3 -m django [subcommand]
  • Note Django version under test is 2.2.3
👤Yu Wei Chen

Leave a comment