如何清除使用easy_install安装的点子? [英] How to cleanly remove pip that is installed by using easy_install?

查看:109
本文介绍了如何清除使用easy_install安装的点子?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果我在OS X Lion 10.7.4上使用了sudo easy_install pip,如何将其干净地删除? 安装完后,我也做了 pip install --upgrade setuptools

If I used sudo easy_install pip on my OS X Lion 10.7.4, how do I cleanly remove it? After the installation, I also did pip install --upgrade setuptools

以下是输出:

mac:~ usr$ sudo easy_install pip 
Password:
Searching for pip
Reading http://pypi.python.org/simple/pip/
Best match: pip 1.5.4   
Downloading https://pypi.python.org/packages/source/p/pip/pip-1.5.4.tar.gz#md5=834b2904f92d46aaa333267fb1c922bb
Processing pip-1.5.4.tar.gz
Running pip-1.5.4/setup.py -q bdist_egg --dist-dir /tmp/easy_install-b_hfrF/pip-1.5.4/egg-dist-tmp-o0r8F5
warning: no files found matching 'pip/cacert.pem' 
warning: no files found matching '*.html' under directory 'docs' 
warning: no previously-included files matching '*.rst' found under directory 'docs/_build' 
no previously-included directories found matching 'docs/_build/_sources' 
Adding pip 1.5.4 to easy-install.pth file   
Installing pip script to /usr/local/bin     
Installing pip2.7 script to /usr/local/bin  
Installing pip2 script to /usr/local/bin    

Installed /Library/Python/2.7/site-packages/pip-1.5.4-py2.7.egg 
Processing dependencies for pip
Finished processing dependencies for pip

当我执行brew install python时,pip(由easy_install安装)会导致符号链接问题,它将以以下方式将其自身的pip安装到/usr/local/bin:

The pip (installed by easy_install) is causing symlink problems when I do brew install python, which will install its own pip to /usr/local/bin as:

lrwxr-xr-x  1 usr  admin   30  3  3 23:26 pip -> ../Cellar/python/2.7.6/bin/pip 
lrwxr-xr-x  1 usr  admin   31  3  3 23:26 pip2 -> ../Cellar/python/2.7.6/bin/pip2 
lrwxr-xr-x  1 usr  admin   33  3  3 23:26 pip2.7 -> ../Cellar/python/2.7.6/bin/pip2.7 

我知道我只能使用brew link --overwrite python,但是如果我不使用easy_install安装的pip,我不希望它出现在我的系统中.我更喜欢保持系统清洁.

I know I can just use brew link --overwrite python but I don't like the pip installed by easy_install to be in my system if I don't use it. I prefer to keep my system clean.

有人还能向我解释这些警告的含义吗?我知道他们没有害处,但是我很好奇我是否缺少任何依赖关系?

Can someone also explain to me what those warnings are for? I know they do no harm but I am curious if I am missing any dependency?

谢谢.

推荐答案

使用pip卸载pip:

Use pip to uninstall pip:

sudo pip uninstall pip

这篇关于如何清除使用easy_install安装的点子?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆