0
0

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.

python関連のアップデートコマンド

Posted at

Python関連をアップデートするコマンド一覧を、忘れないように残します。

pipのアップデート

pip install --upgrade pip

もしくは

python -m pip install --upgrade pip

Anacondaのアップデート

anacondaの本体をアップデートする。

conda update conda -y

全パッケージをアップデートする。

conda update --all -y

pythonをアップデートする。

conda update python -y

不要なファイルを削除する。

conda clean --all -y
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?