관리 메뉴

Silver Library (Archived)

Django - Why I can't install django on python? 본문

Personal DB

Django - Why I can't install django on python?

Chesed Kim 2020. 11. 23. 17:06
반응형

Problem.

With my 5months of learning experience, no idea why on earth this message pop up and annoying me.

 

Solution.

Try pip3 install django==(version here without braket). You are installing package for Python 3.x , so I guess that could be an issue

 

e.g.

pip3 install django==2.0.3

 

Note:

globally installing this may cause a potential security issue. Don't install like this on important device.

 

python - Why can't I install django - Stack Overflow

 

Why can't I install django

whenever I go to the command prompt and typepip install Django==2.0.3 I receive this in red text. Exception: Traceback (most recent call last): File "c:\program files (x86)\python36-32\lib\site-

stackoverflow.com