February 2018
Beginner to intermediate
348 pages
9h 40m
English
In order to install Django, we will use a different approach (although you could skip this entirely and just install it from your usual repositories). We will be downloading the framework with PIP, a tool which simplifies the installation of Python packages. Therefore, the first step is to install PIP: for Red Hat-based systems and other systems using yum as the package manager, execute the following command:
[root@local ~]# yum install python-pip
For Ubuntu, Debian, and other systems that use Apt or Aptitude, use:
[root@local ~]# apt-get install python-pip
The package manager will resolve dependencies by itself. Once PIP is installed, run the following command to download and install Django 1.8.2, the latest stable version to date: ...
Read now
Unlock full access