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?

Jupyter Notebookでpip installしたときの出力を消す方法

Posted at

環境

  • Google Colaboratory
  • pip 23.1.2

Jupyter Notebookでpip installしたときの出力を消す方法

Jupyter Notebookでpip installしたときの出力を消す方法はいくつかあります。

方法1: --quietオプション

!pip install --quiet (パッケージ名)

成功
image.png

失敗
image.png

pipの--quietオプションを使うのが普通だと思います。

方法2: > /dev/null

!pip install (パッケージ名) > /dev/null

成功(なにも出力されない)
image.png

失敗
image.png

/dev/nullに捨てると、成功時は何も出力されなくなります。

方法3: IPython.display.clear_output

!pip install (パッケージ名)

from IPython.display import clear_output
clear_output()

成功(なにも出力されない)
image.png

失敗(なにも出力されない)
image.png

エラーがあっても何も出力が残りません。
また、インストールの実行中はすべてのログが出力され、clear_output()が実行されたタイミングですべてが消えるという特徴があります。実行中は目視でログを見たいという場合には有効だと思います。

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?