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: 1. first create a new directory in a location of your choice ; >* md directory_name* 2. Go to the newly created directory; >* cd directory_name* 3. Create a virtual environment to test everything in a sandbox environment: > *py -m venv .venv* 4. Activate the virtual environment: > *.venv\Scripts\activate* 5. Install any python package with pip directly: venv > *pip install python_package* (example: *pip install django*) 6. 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 > <https://groups.google.com/d/msgid/django-users/879c4e25-5ff9-4858-bf6d-b794bef3aed7%40googlegroups.com?utm_medium=email&utm_source=footer> > . > -- 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.

