3
3

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 5 years have passed since last update.

pipの早見表

Posted at

#pip
今回はpipの基本について書いていきます
(筆者はUbuntu環境で実行しています。環境によって入力するコマンドは少し異なります)

#pipの基本
pipとはPythonパッケージのインストールをするための道具です。
まずは最初にpipの基本からおさえていきましょう。
操作はすべてコマンド上で行います!!

##pipのインストール
何をするにもまずはインストールからですね!
実は僕はインストールする際に

sudo apt update

を忘れていて1日悩んだので、まずはこれを最初にコマンドで実行しましょうね!

sudo apt install python-pip

##バージョンを確認する
大体どこのブログも最初はバージョン確認から始まりますよね。テンプレート通りに参りましょう。

pip -v
//または
pip --version

##インストール済みのパッケージを全て確認する

python -m pip list

##特定のパッケージがインストールされているか確認する

python -m pip freeze |grep パッケージ名

##パッケージのインストール

pip install パッケージ名

##既にインストールされているパッケージの確認

pip freeze

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

pip uninstall パッケージ名
3
3
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
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?