首页 > 代码库 > OSX下 pip更新及安装python库
OSX下 pip更新及安装python库
直接执行安装命令
$ pip install builtwith
提示pip当前版本为7.1.2,要使用"pip install --upgrade pip"升级到8.1.2
$ pip install --upgrade pip
报错如下:
Cannot fetch index base URL https://pypi.mirrors.ustc.edu.cn/simple/
提示信息表示找不到镜像网站,有可能是镜像源失效了,或者国外的源被墙了。修改为国内可访问的源
$ vim ~/.pip/pip.conf
此处使用的是阿里云的镜像
[global]index-url = http://mirrors.aliyun.com/pypi/simple/[install]trusted-host = mirrors.aliyun.com
trusted-host
一定要设置,不然会报错:
The repository located at mirrors.aliyuncs.com is not a trusted or secure host and is being ignored. If this repository is available via HTTPS it is recommended to use HTTPS instead, otherwise you may silence this warning and allow it anyways with ‘–trusted-host mirrors.aliyuncs.com’.
再次执行升级命令(需要加sudo,否则会出错,对相关文件没有访问权限)
$ sudo pip install --upgrade pip
升级OK!
安装python库(需要加sudo)
$ sudo pip install builtwith
OSX下 pip更新及安装python库
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。