pikesaku’s blog

個人的な勉強メモです。記載内容について一切の責任は持ちません。

RHEL7でのpip2とpip3の共存

RHEL7のpipは以下でインストール

# yum install epel-release
# yum install python-pip

pip3は以下でインストール

python 3.4 - How to install pip in CentOS 7? - Stack Overflow

# wget https://bootstrap.pypa.io/get-pip.py
# python3.4 get-pip.py

pipコマンドがpip3になってしまうので、、、、

# yum remove --enablerepo=epel python-pip
# yum install --enablerepo=epel python-pip

これで、再度上書き