不要になった仮想環境の削除
(1)環境の確認
$ conda info -e
# conda environments:
test * /Users/taro/anaconda3/envs/test
root /Users/taro/anaconda3
(2)不要環境の削除
(例)test環境を削除する場合
$ conda remove -n test -all
(3)不要になったパッケージやキャッシュの削除
$ conda clean --all
$ conda info -e
# conda environments:
test * /Users/taro/anaconda3/envs/test
root /Users/taro/anaconda3
(2)不要環境の削除
(例)test環境を削除する場合
$ conda remove -n test -all
(3)不要になったパッケージやキャッシュの削除
$ conda clean --all
コメント