1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Windows環境でpythonのパッケージをインストールする方法

Last updated at Posted at 2022-11-14

概要

WindowsにPythonをインストールしたがパッケージの入れ方がわからなかったのでメモ書き

パッケージをインストールする方法

結論からコマンド プロンプト上でpipコマンドを打ってinstallをすれば良い

pip install パッケージ名

例:下記はexcelを扱うためのパッケージ(openpyxl)をインストールするコマンド

pip install openpyxl

ここでpipが見つからないとエラーが出た場合はpath設定ができていない。
Windowsのpath設定を行う。
pathがわからない場合は下記のコマンドを叩くとpipまでのファイルパスが表示される。

where pip

インストールしたパッケージ一覧

pin list

パッケージをアンインストールする方法

pip uninstall パッケージ名

パッケージの情報確認

下記のコマンドで確認。インストールされたpathも確認できる。

pip show パッケージ名

パッケージのアップデート

pip install -U パッケージ名
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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?