How to make pip available to git bash command line on Windows?

17,755

Solution 1

Try adding C:/path/to/python/Scripts/ to PATH

There should be a pip.exe there!

Solution 2

in your Anaconda directory there is a pip file in the direcctory Scripts.

add this path : C:\Users#yourname\Anaconda3\Scripts

i did the same and it was successful !! (when i wrote pip in git bash it worked)

Share:
17,755
temporary_user_name
Author by

temporary_user_name

Student of many things.

Updated on June 15, 2022

Comments

  • temporary_user_name
    temporary_user_name almost 2 years

    I added the pip installation folder in my python site-packages directory to my PATH, but I can still only run it via python -m pip in my git bash. Just pip gives me command not found.

    I looked around the pip directory and I don't see any binaries, so this makes sense. Yet clearly pip is a thing that is normally used on the command line without python -m. So what component am I missing here?

  • temporary_user_name
    temporary_user_name over 5 years
    Question eligible for bounty in two days. It's coming.
  • curlpipesudobash
    curlpipesudobash over 5 years
    Wow! Thank you.