英文:
pip: bad interpreter: /../ no such file or directory
问题
我无法使用pip,出现错误:
pip: 坏的解释器: /Applications/Xcode.app/Contents/Developer/usr/bin/python3: 没有那个文件或目录
我尝试过:
brew link --overwrite python
python3 -m pip install whatever
brew install python
brew postinstall python
但都没有起作用。
英文:
I can't use pip I get an error
pip: bad interpreter: /Applications/Xcode.app/Contents/Developer/usr/bin/python3: no such file or directory
I try:
brew link --overwrite python
python3 -m pip install whatever
brew install python
brew postinstall python
but nothing works.
答案1
得分: 1
一些方式,Python3 命令在系统中被您搞乱了。您需要重置它。
只需运行以下命令:
set python3=/usr/bin/python3
现在您可以使用 pip
。
英文:
somehow python3 cmd is messed up in system by you. you need to reset it.
just run the command
set python3=/usr/bin/python3
now you can use pip
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论