美文网首页python
pip: command not found

pip: command not found

作者: robotlee8 | 来源:发表于2019-06-02 15:23 被阅读0次

系统是mac系统,本来想安装个微信机器人呢。执行了pip install itchat 命令后控制台报如下错误:

错误提示

显示找不到此命令,既然找不到肯定是没有装pip,pip是啥玩意?

pip 是一个现代的,通用的 Python 包管理工具。提供了对Python 包的查找、下载、安装、卸载的功能。
官方提供的pip 示例

  • pip install requests
  • pip search xml
  • pip show beautifulsoup4
  • pip uninstall requests

因为老版本的python只有easy_install,所以只能用easy_install来安装。
执行下面命令就行了

sudo easy_install pip

相关文章

网友评论

    本文标题:pip: command not found

    本文链接:https://www.haomeiwen.com/subject/ogqezqtx.html