1つ、epelソースのインストール
最初にepelソースをインストールします。
yum install epel-release
epelソースを使用してyumのpython3ステータスを照会します。
Repository epel is listed more than once in the configuration
abrt-addon-python3.noarch 2.1.11-50.el7 epel
boost-python36.x86_64 1.53.0-30.el7 epel
boost-python36-devel.x86_64 1.53.0-30.el7 epel
boost-python36-static.x86_64 1.53.0-30.el7 epel
boost169-mpich-python3.x86_64 1.69.0-2.el7 epel
boost169-mpich-python3-devel.x86_64 1.69.0-2.el7 epel
以上のことから、 python3
、 python34
、 python36
をインストールできることがわかります。次に、例としてpython36のインストールを取り上げます。以下は、python36とそれに対応するpipをインストールするためのスクリプトです。
yum install python36 python36-pip
インストール後、直接使用できます。python3
、 python36
、または python3.6
コマンドを実行するだけで、ライブラリのインストールでは pip3
または pip3.6
コマンドを使用します。
Recommended Posts