0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

pipについて

Last updated at Posted at 2024-02-27

pipでインストールされているライブラリの情報を見たい時

特定のライブラリのバージョン情報をみたい場合

pip show <library_name>

pipでインストールされている全ライブラリのバージョンを表示

pip list

"pip list"のオプションを表示

pip list -h

"pip freeze"のオプションを表示

pip freeze -h

pipでインストールしたい時

インストール

pip install <library_name>

ライブラリのバージョン指定インストール

pip install <library_name>==<desired_version>

【注意】
『library_name』と『desired_version』の間の"=="がダイジ!!

requirements.txtを使った一括インストール

pip install -r requirements.txt

requirements.txtとは

<library_name>==<desired_version>

のように、インストールしたい『library_name』と『desired_version』が延々記述されているテキストデータ

ライブラリをアップデートしたい時

pip install --upgrade <library_name>

ライブラリをバージョンを指定してアップデートしたい時

pip install --upgrade <library_name>==<desired_version>
0
2
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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?