CentOS7にPython3系をインストールした時のメモです。
Pythonインストール
リポジトリを追加してPythonをyumでインストールします。
sudo yum install -y https://centos7.iuscommunity.org/ius-release.rpm
sudo yum install -y python36u python36u-devel python36u-libs
pipインストール
Pythonを入れるついでにpipもインストールします。
wget https://bootstrap.pypa.io/get-pip.py
python3.6 get-pip.py