私は勝利10を持っています
実行時:
conda update conda
このエラーが発生しました:
RemoveError: 'setuptools' is a dependency of conda and cannot be removed from
conda's operating environment.
何も役に立たないようです
Anacondaをアンインストールしようとして成功したというメッセージが表示されましたが、まだ残っている古いバージョンの痕跡がいくつかあるようです
Anacondaインストールのすべてのトレースを完全に消去するにはどうすればよいですか?
それは私のために働きます:
conda uninstall setuptools
# This is a must to make it work
conda install setuptools
conda update --force conda
私はDockerfileでcontinuumio/miniconda3:latest
を使用してこの問題に遭遇しました。
RUN conda update -n base -c defaults conda
修正するには、単純にsetuptools
要件を追加:
RUN conda update -n base -c defaults conda setuptools
他の英雄の必要はありませんでした。