【Python】升级python至2.7后pip不可用

报错如下:

1
2
3
4
5
# pip
Traceback  (  most  recent  call  last  )  :
    File  "/usr/bin/pip"  ,  line  5  ,  in  <  module  >
      from  pkg_resources  import  load_entry_point
ImportError  :  No  module  named  pkg_resources

其实发生这个问题是因为:虽然你已经把Python升级到了2.7版本,但是pip仍然是原来的,版本,仍然在原来python的site-package里面


解决方法:
重新安装pip
复制代码
curl -O https://pypi.python.org/packages/source/p/pip/pip-7.1.2.tar.gz
用wget下载时会报错,这里改用curl -O
tar zxvf pip-7.1.2.tar.gz     
cd pip-7.1.2    
python setup.py install
ln -s /usr/local/python27/bin/pip2.7 /usr/bin/pip  #创建软链接时报文件已经存在时执行rm -rf /usr/bin/pip
//pip默认安装到了/usr/local/python27/bin下面 
复制代码

测试pip

复制代码
[root@localhost pip-7.1.2]# pip list
distribute (0.6.14)
pip (7.1.2)
setuptools (0.6rc11)
wheel (0.29.0)
The directory '/root/.cache/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
/usr/local/python27/lib/python2.7/site-packages/pip-7.1.2-py2.7.egg/pip/_vendor/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning.
  InsecurePlatformWarning
You are using pip version 7.1.2, however version 9.0.1 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
复制代码

 

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/29096438/viewspace-2128231/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/29096438/viewspace-2128231/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值