You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Install virtualenv using command - pip install virtualenv
Now activate the virtual environment using command - virtualenv env
Now activate the virtual env using command - .\env\Scripts\activate . This will activate the virtual environment. For linux and Mac try - source env/bin/activate
Install all requirements by - pip install -r requirements.txt.
Now to migrate the models run - python manage.py migrate.
Now to activate the localhost server run - python manage.py runserver
Runs the app in the development mode.
Open (http://localhost:8000) to view it in the browser.