gpt4 book ai didi

python - 如何卸载我所有的 python 包?

转载 作者:太空宇宙 更新时间:2023-11-03 21:25:25 24 4
gpt4 key购买 nike

我之前在我的 macOS Sierra 上安装了一个运行良好的 Python 3.6.0 版本,其中包括 matplotlib 等模块。

但是,我有学习图像处理程序的需要,所以我想学习openCV。我尝试关注 this link下载并安装 openCV。在此过程中,我下载了以下程序:

  1. 代码
  2. 自制
  3. python 2.7.10
  4. python 3.6.1

我发现我可以在 IDLE 中导入 cv2 模块,但是我无法再在 IDLE 中导入 matplotlib。在我的 macOS Sierra 上,Python 的 3 个版本非常困惑,我想删除与 Python 相关的所有内容,这样我就可以重新开始,再次安装 Python,并希望在具有所有功能的同一版本的 Python 上安装 openCV我之前使用的其他模块。

最佳答案

如果您使用的是 Homebrew 版本的 Python,您只需卸载它们并重新安装即可。

## Uninstall python & python3 packages. We use ignore-dependencies
## so the uninstaller will allow this; it's okay, we're going to reinstall
## right away anyway.

brew uninstall --ignore-dependencies python3
brew uninstall --ignore-dependencies python

## This will remove all of your locally installed Python packages.

rm -rf /usr/local/lib/python?.?

## And now reinstall the main Python packages.

brew install python python3

关于python - 如何卸载我所有的 python 包?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44102332/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com