October 2016
Intermediate to advanced
418 pages
9h 52m
English
We have created and activated a virtual environment. It is time to run many commands that will be the same for either macOS, Linux or Windows. Now, we must run the following command to install the Django Web framework:
pip install djangoThe last lines of the output will indicate that the django package has been successfully installed. Take into account that you may also see a notice to upgrade pip.
Collecting django Installing collected packages: django Successfully installed django-1.10
Now that we have installed Django Web framework, we can install Django REST framework. We just need to run the following command to install this package:
pip install djangorestframeworkThe last lines for ...