爲了uninstall miniconda,只需刪除miniconda
文件夾,
rm -r ~/miniconda/
這不應該刪除任何畫中畫安裝的軟件包(但你應該檢查~/miniconda
文件夾的內容,確認)。
爲避免不同python environements之間的衝突,您可以使用virtualenv
。特別是,miniconda,下面的工作流程可以使用,
$ wget http://bit.ly/miniconda
$ 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-13 22:58:15
rth
如果你使用'pip'的東西安裝到Miniconda然後Python去除Miniconda目錄也將其刪除。如果你將它們安裝到另一個Python安裝中,那麼它不會。 – asmeurer
也刪除'〜/ .bash_profile'中的路徑導出 – math
路徑添加到〜/ .bashrc 4.1.11 – bugmenot123