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?

Pythonのpip listについて

Posted at

はじめに

pipでインストールしたライブラリーの管理についてです。

インストールされているライブラリとバージョンが一覧で表示

Bash
pip list

インストール場所や詳細情報も見られます

Bash
pip show pytesseract

環境の引っ越しで使われる定番テクニック

現在の環境に入ってるライブラリとバージョンが一覧化

Bash
pip freeze > requirements.txt

まるごと一括インストール

Bash
pip install -r requirements.txt
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?