Try this pip —default-timeout=10 -v install django
Your problem is either internet or antivirus. > > On 13 Feb 2020, at 8:36 AM, paarull shukla <[email protected]> > wrote: > > > Sir please help me out. I m not able to install it.. Getting trouble since 5 > days back > >> On Thu, 13 Feb, 2020, 5:29 AM Dimitri Forster, <[email protected]> >> wrote: >> Hey Paarul, >> >> The problem is that you are trying to call pip from the command prompt >> directly. >> Try py -m pip install django and it should work. >> >> Better yet you could: >> first create a new directory in a location of your choice ; > md >> directory_name >> Go to the newly created directory; > cd directory_name >> Create a virtual environment to test everything in a sandbox environment: > >> py -m venv .venv >> Activate the virtual environment: > .venv\Scripts\activate >> Install any python package with pip directly: venv > pip install >> python_package (example: pip install django) >> Start a new dango project: .venv > django-admin startproject >> your_project_name >> Met vriendelijke groeten | Kind regards, >> >> Dimitri Forster >> >> >>> On Tue, Feb 11, 2020 at 1:14 PM paarull shukla >>> <[email protected]> wrote: >>> heloo guys i m not able to install django please help me it .i m facing >>> issue last 10 days . i m getting collecting django after tht installation >>> not started >>> -- >>> You received this message because you are subscribed to the Google Groups >>> "Django users" group. >>> To unsubscribe from this group and stop receiving emails from it, send an >>> email to [email protected]. >>> To view this discussion on the web visit >>> https://groups.google.com/d/msgid/django-users/879c4e25-5ff9-4858-bf6d-b794bef3aed7%40googlegroups.com. >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Django users" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to [email protected]. >> To view this discussion on the web visit >> https://groups.google.com/d/msgid/django-users/CAAVjHbNGJoUk4RY-rQgF8j5ofqsZXBt1BxACH%3D45wZCk-zd%2Bjw%40mail.gmail.com. > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/CACLQzseTvirGVKSpUCS9tUv9MiqX2FRJMwi1O8Amv5XfDiSzBQ%40mail.gmail.com. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/9243B8E3-DCE9-4445-AB6D-82FE45C894D1%40gmail.com.

