Building an emergency location sharing app in Django (part - 1)
Setting up ... This article is for the people with similar goals who are new to Django, w e will do all prerequisites which are required to build the emergency app. Step-1 : Installing and Configuring Django Step-2 : Installing Required packages Step-3 : Starting and Running the project So, let's start... 1 . Installing and Configuring Django sudo apt update -y This command downloads the package information which is useful to get information on an updated version of packages or their dependencies. So, what it does is, install new packages if required to satisfy the dependencies but existing packages will never be removed they may get updated. sudo apt install python3 sudo apt install python3 python3-pip -y If you are using ubuntu version 16.10 or newer then these are the two commands to install python3 and pip3. python3 --version pip3 --version