78

我已经安装了 conda 包:

$ wget http://bit.ly/miniconda
$ bash miniconda
$ conda install numpy pandas scipy matplotlib scikit-learn nltk ipython-notebook seaborn

我想卸载它,因为它弄乱了我的点数和环境。

  • 如何完全卸载 conda?
  • 它还会卸载我的 pip 托管软件包吗?如果是这样,有没有办法在不卸载 pip 管理的软件包的情况下安全地卸载 conda?
4

5 回答 5

89

为了卸载 miniconda,只需删除miniconda文件夹,

rm -r ~/miniconda/

至于避免不同 Python 环境之间的冲突,可以使用虚拟环境。特别是,对于 Miniconda,可以使用以下工作流程,

$ wget https://repo.continuum.io/miniconda/Miniconda3-3.7.0-Linux-x86_64.sh -O ~/miniconda.sh
$ bash miniconda
$ conda env remove --yes -n new_env    # remove the environement new_env if it exists (optional)
$ conda create --yes -n new_env pip numpy pandas scipy matplotlib scikit-learn nltk ipython-notebook seaborn python=2
$ activate new_env
$ # pip install modules if needed, run python scripts, etc
  # everything will be installed in the new_env
  # located in ~/miniconda/envs/new_env
$ deactivate
于 2015-04-13T22:58:15.813 回答
44

完全卸载 conda (Anaconda / Miniconda)的正确方法:

  1. 使用 Anaconda-Clean 包删除所有与 conda 相关的文件和目录

    conda activate your_conda_env_name
    conda install anaconda-clean
    anaconda-clean # add `--yes` to avoid being prompted to delete each one
    
  2. 删除整个 conda 目录

    rm -rf ~/miniconda3
    
  3. 删除将 conda 路径添加到PATH环境变量的行

    vi ~/.bashrc
    # -> Search for conda and delete the lines containing it
    # -> If you're not sure if the line belongs to conda, comment it instead of deleting it just to be safe
    source ~/.bashrc
    
  4. 删除由 Anaconda-Clean 软件包创建的备份文件夹 注意:在执行此操作之前请三思,因为之后您将无法从旧的 conda 安装中恢复任何内容!

    rm -rf ~/.anaconda_backup
    

参考:conda 官方文档

于 2020-07-10T15:46:26.587 回答
8

如果您使用的是 Windows,只需搜索 miniconda 即可找到该文件夹​​。进入文件夹,你会发现一个 miniconda 卸载 exe 文件。运行。

于 2020-04-20T14:33:17.973 回答
6

您必须在 ~/.bashrc 中评论该行:

#export PATH=/home/jolth/miniconda3/bin:$PATH

并运行:

source ~/.bashrc
于 2018-08-18T15:39:04.610 回答
1

要更新@Sunil 答案:在 Windows 下,Miniconda 有一个常规卸载程序。转到菜单“设置/应用程序/应用程序和功能”,或单击开始按钮,键入“卸载”,然后单击“添加或删除程序”,最后单击 Miniconda 卸载程序。

于 2020-09-08T13:00:15.443 回答