LoginSignup
1
0

More than 5 years have passed since last update.

Python2.xをインストール(ソースからコンパイル)for CentOS7.3

Last updated at Posted at 2016-12-24

最近よく利用されるPython。Pythonの普及版である2.xのインストール方法をご紹介します。尚OpenIPMIでは、2.x系を必要とします。
2016年12月時点では、「2.7.13」が最新版となります。

インストール

Python2.7インストール方法
cd /usr/local/src
wget https://www.python.org/ftp/python/2.7.13/Python-2.7.13.tgz
tar xvzf Python-2.7.13.tgz
cd Python-2.7.13
./configure --with-ensurepip
make
make install

以上で、インストールは完了です。

1
0
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
1
0