web-dev-qa-db-ja.com

RemoveError: 'setuptools'はcondaの依存関係であり、condaの動作環境から削除できません

私は勝利10を持っています

実行時:

conda update conda

このエラーが発生しました:

RemoveError: 'setuptools' is a dependency of conda and cannot be removed from
conda's operating environment.

何も役に立たないようです

Anacondaをアンインストールしようとして成功したというメッセージが表示されましたが、まだ残っている古いバージョンの痕跡がいくつかあるようです

Anacondaインストールのすべてのトレースを完全に消去するにはどうすればよいですか?

6
Toly

それは私のために働きます:

conda uninstall setuptools
# This is a must to make it work
conda install setuptools
conda update --force conda
1
Val

私はDockerfileでcontinuumio/miniconda3:latestを使用してこの問題に遭遇しました。

RUN conda update -n base -c defaults conda

修正するには、単純にsetuptools要件を追加

RUN conda update -n base -c defaults conda setuptools

他の英雄の必要はありませんでした。

1
Acumenus