Skip to content Skip to sidebar Skip to footer

Pip Is Not Recognized In Anaconda Prompt

I'm using Anaconda on Windows x64. I'm trying to install some library using pip. However, the the command line isn't recognizing pip or any other scripts. The folder that they are

Solution 1:

When creating your environment, you need to specify pip as a dependency:

conda create--name my-env pip
activate my-env
pip install ...

Installing a new environment with all default anaconda packages:

conda create--name my-env anaconda

Solution 2:

Do this worked for me:

conda install pip

and try:

pip install package_name

Solution 3:

Make sure you have the following dir added to PATH:

C:\Python27\Scripts

Solution 4:

I worked for me if I start cmd and do cd C:\Users\ComputerName\Python27\Scripts Then I typed in 'pip install "library"' and it worked! If you don't know how to access cmd just press Win+R and type in cmd!

Hope it helped!

Solution 5:

Try typing

python -m pip install --upgrade pip

in CMD

It worked for me.

Post a Comment for "Pip Is Not Recognized In Anaconda Prompt"