Home > Software engineering >  why is the pip install django Why does it take so long? ''Installing collected packages&qu
why is the pip install django Why does it take so long? ''Installing collected packages&qu

Time:12-15

I'm trying to pip install django but installation takes a long time "Installing collected packages" step? like 40 min

$ python -m pip install django


Collecting django
  Using cached Django-4.1.4-py3-none-any.whl (8.1 MB)
Collecting asgiref<4,>=3.5.2
  Using cached asgiref-3.5.2-py3-none-any.whl (22 kB)
Collecting sqlparse>=0.2.2
  Using cached sqlparse-0.4.3-py3-none-any.whl (42 kB)
Installing collected packages: sqlparse, asgiref, django

CodePudding user response:

You can try using python3

python3 -m pip install django

Hope it is helpful :)

CodePudding user response:

You can write it like this:

pip install django
  • Related