LoginSignup
1
3

More than 3 years have passed since last update.

【LOG】pip自体をアップデートする

Posted at

環境

  • macOS BigSur Version : 11.2.2
  • pip3 Version : 10.0.1

1. You should consider upgrading via the 'pip install --upgrade pip' command. の表示

pip3 コマンドでパッケージをインストールしたら、 pipをアップデートしなさい と表示されました。

% pip3 install selenium

You are using pip version 10.0.1, however version 21.0.1 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.

2. pip自体 をアップデート

というわけで、 pip3 install --upgrade pip コマンドで pip自体 をアップデートしました。
久しく、自宅PCでpipをいじっていなかった…これからはもっと触れ合おうと思います🕺

% pip3 install --upgrade pip

Collecting pip
  Using cached https://files.  【 〜〜〜 長いので中略 〜〜〜 】  /pip-21.0.1-py3-none-any.whl
Installing collected packages: pip
  Found existing installation: pip 10.0.1
    Uninstalling pip-10.0.1:
      Successfully uninstalled pip-10.0.1
Successfully installed pip-21.0.1
1
3
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
1
3