LoginSignup
2
3

More than 5 years have passed since last update.

Python2.7.9にアップデート

Posted at
$ sudo wget https://www.python.org/ftp/python/2.7.9/Python-2.7.9.tgz
$ tar zxvf Python-2.7.9.tgz
$ cd Python-2.7.9/

$ ./configure --with-threads --enable-shared
$ make
$ sudo make install

### 確認
$ python -V

### 下記エラーが出るかもしれない。
# python: error while loading shared libraries: libpython2.7.so.1.0: cannot open shared object file: No such file or directory
# リンクを貼る
$ sudo ln -s /usr/local/lib/libpython2.7.so.1.0 /lib64/

# 再度確認
$ python -V
Python 2.7.9
2
3
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
2
3