Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我为 Python 安装了 Requests 2.0.0 库,我想卸载它。有什么简单的方法可以卸载吗?
提前致谢。
如果您使用 pip,您可能可以执行以下操作:
pip uninstall requests
否则,您将不得不手动删除这些文件。如果您使用了 easy_install,您还必须编辑 easy-install.pth 并从那里删除请求条目。
另请参阅python setup.py 卸载