binary_only = FormatControl(set(), {':all:'})
微wx笑 2019-11-05【编程语言】 9 0关键字: pip python
执行pip安装python模块报错:binary_only = FormatControl(set(), {':all:'})执行 python get-pip.py 安装pip也会报错分析报错的情况来看,是因为python的版本太低了,因
执行pip安装python模块报错:binary_only = FormatControl(set(), {':all:'})
执行 python get-pip.py 安装pip也会报错
分析报错的情况来看,是因为python的版本太低了,
因为执行 pip install --upgrade pip 时输出如下:
DEPRECATION: Python 2.6 is no longer supported by the Python core team, please upgrade your Python. A future version of pip will drop support for Python 2.6 Collecting pip Downloading http://mirrors.aliyun.com/pypi/packages/00/b6/9cfa56b4081ad13874b0c6f96af8ce16cfbc1cb06bedf8e9164ce5551ec1/pip-19.3.1-py2.py3-none-any.whl (1.4MB) 100% |████████████████████████████████| 1.4MB 67.5MB/s pip requires Python '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*' but the running Python is 2.6.6 You are using pip version 9.0.3, however version 19.3.1 is available. You should consider upgrading via the 'pip install --upgrade pip' command.
如果你的版本比我的高,那么可以试试:
yum install python-pip -y yum install python-setuptools -y
如果是,那恐怕需要安装 Python 高一点的版本了。
如果是centOS系统,那么安装过程稍微麻烦一点。
参考;
CentOS release 6.10 下 Python 3.7.5 安装记录
本文由 微wx笑 创作,采用 署名-非商业性使用-相同方式共享 4.0 许可协议,转载请附上原文出处链接及本声明。
原文链接:https://www.ivu4e.cn/blog/lang/2019-11-05/274.html