Created
March 15, 2022 13:55
-
-
Save devopsinka/ad8f127432acd41bf79d16465c21fb2e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ mkdir django && cd django | |
| $ mkdir django-env && cd django-env | |
| $ python3.10 -m venv env | |
| $ source env/bin/activate | |
| (env)$ pip install django==4.0 | |
| (env)$ django-admin.py startproject hello_django . | |
| (env)$ python manage.py runserver |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment