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のパッケージ取得

Posted at

はじめに

Pythonのパッケージを取得、削除するまでの一連の操作をまとめる。

Pythonのパッケージを検索

Python Package Index(PyPI)のサイトから検索が可能。

pipコマンド

コマンド 意味
pip install [パッケージ名] インストール
pip install -U [パッケージ名] アップグレード
pip install [パッケージ名]==[バージョン] バージョン指定インストール
pip list リスト
pip show [パッケージ名] パッケージの情報
pip -V pipのバージョン
pip uninstall [パッケージ名] アンインストール
pip install -U pip pip自体のアップグレード
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?