LoginSignup
42
37

More than 3 years have passed since last update.

Ubuntuにpip/pip3をインストールする

Last updated at Posted at 2020-03-28

はじめに

UbuntuにPythonの実行環境を整える際、同時にpipを入れる人は少なくないだろう。
そして、Googleさんに聞けばaptでインストールができるという回答が得られるだろう。ただ、私の記憶が正しければ、この方法で入れてしまうと後々pip自体のアップデートがうまく行かないなどの不具合が発生する可能性がある
そこで、不具合が生じない方法を備忘録的に簡潔に残しておく

pipの導入

Python2系。もういらない子...

curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
sudo python2 get-pip.py

pip自体のアップデート

pip install -U pip

pip3の導入

多分よく使うのがこっち。

curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
sudo python3 get-pip.py

pip3自体のアップデート

pip3 install -U pip
42
37
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
42
37