3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Anacondaの仮想環境の削除で手間取った話

Posted at

#まず初めに
anacondaで仮想環境を作成した際に不要になったので、仮想環境を削除しようとした時に、思いもよらないところでエラーが出た。
以下のようなもの。

PackagesNotFoundError: The following packages are missing from the target environment:

なにも考えずに、いつも通りにconda uninstall (環境名)のような形でコマンドを打ったが、うまくいかなかった。
その後、色々と調べたが、意外とハマっている人も多かった気がするのでメモがてらに書いておく。

#仮想環境の削除
削除できずに困っているなら、まずは/Users/ユーザーの名前/anaconda3(各自のバージョン)/envs/ここにある仮想環境のディレクトリを削除することが必要!

削除したいディレクトリがどこに位置しているのかわからない場合は以下のコマンドを打ってみる。

$ conda info --env

自分の今いる環境には*がついている。
ここで削除したいディレクトリを確認できれば、以下のコマンドを打ち込んで削除。

$ rm -rf /Users/ユーザーの名前/anaconda3(各自のバージョン)/envs/自分の消したいディレクトリ

このコマンドの実行後に削除されているかの確認。

$ conda info --env

なくなっていれば、ちゃんと消えている。

3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?