It seems that there is django as a famous framework of Python, so this time I will install it using a tool called pip that manages Python packages. I don't even know what django is because I haven't studied Python properly. First, install pip by running the following command in your terminal:
$ easy_install pip
After installation, upgrade pip with the following instructions.
$ pip install --upgrade setuptools
$ pip install --upgrade pip
Now let's install django using pip. Execute the following command.
$ pip install django
It seems that you can execute the following command to check the packages managed by pip.
$ pip freeze
Django==(version)
Is displayed, you can confirm that it is installed.
Recommended Posts