DEV Community

Dr. Azad Rasul
Dr. Azad Rasul

Posted on

1- How to install Django?

To install Django package with pip on Windows:

  • Open cmd
  • Inside cmd, we can write:
py -m pip install Django
Enter fullscreen mode Exit fullscreen mode

You can tell Django is installed and which version by running the following command in cmd:

py -m django --version
Enter fullscreen mode Exit fullscreen mode

Image description

Top comments (0)