卸载Anaconda
要卸载Anaconda,您可以简单地删除该程序。这将留下一些文件,对于大多数用户来说就足够了。See Option A
Option A
Windows:
Use Windows Explorer to delete the envs and pkgs folders prior to running the uninstall in the root of your installation.
In the Control Panel, choose Add or Remove Programs or Uninstall a program, and then select Python 3.6 (Anaconda) or your version of Python.
Linux:
Open a terminal window, and then remove your entire Anaconda directory, which has a name such as anaconda2 or anaconda3, by entering rm -rf ~/anaconda3.
macOS:
Open the Terminal.app or iTerm2 terminal application, and then remove your entire Anaconda directory, which has a name such as anaconda2, anaconda3, or ~/opt. Enter rm -rf ~/anaconda3 to remove the directory.
如果您还想从Anaconda及其程序中删除配置文件和目录的所有痕迹,则可以先下载并使用Anaconda-Clean程序,然后进行简单的删除。See Option B
Option B
Install the Anaconda-Clean package from Anaconda Prompt (terminal on Linux or macOS):
conda install anaconda-clean
Or, remove all Anaconda-related files and directories without being prompted to delete each one:
anaconda-clean --yes
Linux和macOS系统的人需要执行下面的步骤
Removing Anaconda path from .bash_profile
If you use Linux or macOS, you may also wish to check the .bash_profile file in your home directory for a line such as:
export PATH="/Users/jsmith/anaconda3/bin:$PATH"
Note
Replace /Users/jsmith/anaconda3/ with your actual path.
本文提供了两种卸载Anaconda的方法:直接删除程序或使用Anaconda-Clean彻底清理配置文件和目录。对于Linux和macOS用户,还需检查.bash_profile文件,移除Anaconda路径。
4444

被折叠的 条评论
为什么被折叠?



