LoginSignup
1
1

More than 3 years have passed since last update.

Ubuntu18.04でのpipやそれ関連のインストール時のエラーの対処

Posted at

pip3で例えばxxxをインストールしようとして

ipywidgets 6.0.0 requires widgetsnbextension~=2.0.0, which is not installed.

などのエラーが出たら

pip3 install --user --upgrade ipywidgets

で対処。

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

が実行結果の最終文などに出て邪魔してきたら

pip3 install --user --upgrade pip

で解決。エラーは出なくなった。

1
1
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
1