如何卸载使用 easy_install 安装的 Python 模块(“egg”)?
我使用 easy_install 安装了几个 Python 模块。我该如何卸载它们?
我看不到 easy_install --help
中列出的卸载选项。
I’ve installed a couple of Python modules using easy_install. How do I uninstall them?
I couldn’t see an uninstall option listed in easy_install --help
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
啊,我们开始吧:
我不太清楚
-m
选项的作用,但这个方法似乎对我有用(即在这样做之后,我不能再import 我的 Python 解释器中的模块)。
Ah, here we go:
I’m not exactly clear what the
-m
option does, but this method seems to work for me (i.e. after doing it, I can no longerimport
the modules in my Python interpreter).easy_install
确实对我有用。我还能够测试
easy_install -m
短名称是否有效。例如:pip uninstall mesos
也最终使用短名称。easy_install
did work for me.I also was able to test that
easy_install -m
short name worked. For example:pip uninstall mesos
also ending up working with short name.