简体   繁体   中英

How to set python path with git bash in windows?

Using Git Bash on Windows 10.

python version: 2.7.12

When run pip , it shows:

$ pip
bash: /c/cygwin/bin/pip: /usr/bin/python2.7: bad interpreter: No such file or directory

How to find the right python path with pip?


Addition

$ which python
/c/cygwin/bin/python

Your pip is somehow using the wrong path for your python that doesn't exist. However, there is a simple workaround, you can type this to specify the python interpreter you want to use:

$ /c/cygwin/bin/python -m pip install yourpackage 

This is only a temporary workaround, to fix it, try something from this question.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM