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
- Google App Engine Apis
- How to use List of model in Django?
- HighChart pie does not display any data
- Django get custom m2m field value
- How to use captured value from URL to select JSON data in Django
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
- Access request from the forms.Form to get data from dB related to user
- Django: ajax response doesn't show anything
- Download Images from CSV column to Django ImageField
Source:stackexchange.com