8
6

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 1 year has passed since last update.

【Anaconda】condaのアップデートの警告を消す方法

Posted at

環境

  • macOS
  • iTerm2

概要

pythonのパッケージをインストールしてたらずっと警告↓が出てて煩わしかったので、いい加減にcondaのupdateをやろうと思いました。

==> WARNING: A newer version of conda exists. <==
  current version: 4.12.0
  latest version: 23.3.1

Please update conda by running

    $ conda update -n base -c defaults conda

これは

  • 現在のバージョン:4.12.0
  • 最新のバージョン:23.3.1

でアップデートした方がいいよという警告です。

そんなんすぐ

conda update -n base -c defaults conda

でできると思いきや同じ警告が出るばかり、、、

なんか苦戦したんで記事に残します。

解決方法

簡潔に言うと、私の場合はAnacondaを最新バージョンにアップデートしてみた後でやったらできました。

Anacondaのアップデート

conda update -n base conda -c anaconda

これによりcondaを含むパッケージが優先度の高いanacondaチャンネルに優先される。

condaのアップデート

警告で散々出てきたコマンドを打ち込んであげる。(最後のcondaをbaseの後に変えた)

conda update -n base conda -c defaults

これによりcondaを含むパッケージが優先度の高いpkgs/mainチャンネルに優先される。
要するに一旦anacondaチャンネルに変えてもとに戻すと警告を消すことができたと言うことです。

こんな感じで警告を消すことができました。
ここまで見てくれてありがとうございます。

参考

https://github.com/conda/conda/issues/6591

余談

今回初めてQiitaに投稿してみるのですが、 備忘録としても見れるし、自分の理解を整理できるので悪くないですね。

8
6
1

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
8
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?