Skip to content

Instantly share code, notes, and snippets.

@UtkuGlsvn
Created October 3, 2018 10:21
Show Gist options
  • Save UtkuGlsvn/0215829b9fb3cdd70deeba43fadcae09 to your computer and use it in GitHub Desktop.
Save UtkuGlsvn/0215829b9fb3cdd70deeba43fadcae09 to your computer and use it in GitHub Desktop.
Django Windows/Linux setup
# Linux:
virtualenv env
. env/bin/activate
pip install django
django-admin startproject testsite
python manage.py runserver
# Windows:
python -m venv myvenv
myvenv\Scripts\activate
pip install Django
python django-admin.py startproject testsite
python manage.py runserver
@UtkuGlsvn
Copy link
Author

Django setup for linux/windows

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment