web-dev-qa-db-ja.com

mini condaをアンインストールする方法は? python

Condaパッケージを次のようにインストールしました。

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

アンインストールしたいのは、それが私のピップと環境を台無しにしているからです。

  • condaを完全にアンインストールする方法は?
  • pip管理パッケージもアンインストールしますか?その場合、pipで管理されているパッケージをアンインストールせずにcondaを安全にアンインストールする方法はありますか?
42
alvas

minicondaをアンインストール するには、minicondaフォルダーを削除するだけです。

rm -r ~/miniconda/

異なるpython環境間の競合を避けるために、virtualenvを使用できます。特に、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
50
rth

〜/ .bashrcの行にコメントがあります:

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

そして実行:

source ~/.bashrc
4
Jolth