I have a folder DjangoTest
I first run:
python3 -m pip install —user virtualenv
Then
Python3 -m venv env
Then activate:
source env/bin/activate
INSTALLING DJANGO:
python -m pip install Django
But it’s not running.... how do I start it???
I have a folder DjangoTest
I first run:
python3 -m pip install —user virtualenv
Then
Python3 -m venv env
Then activate:
source env/bin/activate
INSTALLING DJANGO:
python -m pip install Django
But it’s not running.... how do I start it???
For further actions, you may consider blocking this person and/or reporting abuse
Rahul Kashyap -
Pheak Pheasa -
mohiyaddeen7 -
fast-d3v -
Top comments (5)
This should work assuming you have python3
THAT WORKED!!!! So, how do I re start the server after I’m done?
You have to issue an interrupt signal by pressing CTRL+C to stop the server. If you just want to change some code and see the changes, the Django development server should pick those up and restart itself automatically.
What’s the error that you see in the command line? I would suggest that you copy & paste that error message into Google and usually you will be able to find a solution to the problem that you are having.
Are you missing out
python manage.py runserver
.Not sure, cmd logs would help surely!