「Linux/pythonインストール」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→python2.6インストール) |
(→python2.6インストール) |
||
(同じ利用者による、間の3版が非表示) | |||
行7: | 行7: | ||
make | make | ||
make install | make install | ||
+ | |||
+ | 実行 | ||
+ | $ /usr/local/src/Python-2.4.6/python | ||
==python2.6インストール== | ==python2.6インストール== | ||
行12: | 行15: | ||
tar zxvf Python-2.6.9.tgz | tar zxvf Python-2.6.9.tgz | ||
cd Python-2.6.9 | cd Python-2.6.9 | ||
− | ./configure | + | ./configure |
make | make | ||
make install | make install | ||
− | + | 実行 | |
− | $ /usr/local/src/Python-2 | + | $ /usr/local/src/Python-2.6.9/python |
2018年3月9日 (金) 12:00時点における最新版
python2.4インストール
cd /usr/local/src wget http://www.python.org/ftp/python/2.4.6/Python-2.4.6.tgz tar zxvf Python-2.4.6.tgz cd Python-2.4.6 ./configure make make install
実行
$ /usr/local/src/Python-2.4.6/python
python2.6インストール
wget http://www.python.org/ftp/python/2.6.9/Python-2.6.9.tgz tar zxvf Python-2.6.9.tgz cd Python-2.6.9 ./configure make make install
実行
$ /usr/local/src/Python-2.6.9/python