Skip to content

Instantly share code, notes, and snippets.

@kurianbenoy
Last active May 29, 2018 16:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kurianbenoy/277c7be9ecb7b84657db695882db19ec to your computer and use it in GitHub Desktop.
Save kurianbenoy/277c7be9ecb7b84657db695882db19ec to your computer and use it in GitHub Desktop.
Django Installation

Prerequisites

We higly recommend You to install a Linux Distro, preferably it can any Debian based distros like:

  1. Ubuntu
  2. Debian
  3. Linux Mint
  4. Kali Linux

We highly recommend you not to bring Windows Laptops as Django is a free open software and its always nice to work best on Free Open Souce Software instead for Properietary software as it guarantees freedom and is also Free

  1. Install Python https://tutorial.djangogirls.org/en/python_installation/

This Tutorial covers installing Python in almost all distros

  1. Setting Up PIP

This covers how to install pip in almost all distros

https://packaging.python.org/guides/installing-using-linux-tools/

  1. Install django

pip install django==1.11

To verify its installed check: Open Python

import django

print(django.get_version())

1.11.`

So happy hacking and if anything doesn't go as plan , Do drop your Queries on comment section

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