Python 2.5.2
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
]
開始行:
''目次''
#contents
~
----
*目的 [#x57861ad]
*準備 [#ke5afcea]
*インストール [#ufd9ba01]
+ソースの取得
# wget -P /usr/local/src http://www.python.org/ftp/pytho...
~
+ソースの解凍
# cd /usr/local/src
# tar zxvf Python-2.5.2.tgz
~
+コンパイル設定~
[[configureのヘルプ>python-2.5.2のconfigureヘルプ]]
# cd /usr/local/src/Python-2.5.2
# ./configure --prefix=/usr/local/python-2.5.2
~
+インストール
# make
# make install
~
+シンボリックリンクの作成
# ln -s /usr/local/python-2.5.2 /usr/local/python
~
+PATH設定
# vi ~/.bash_profile
PATH=/usr/local/python/bin:$PATH
export PATH
# source ~/.bash_profile
~
+easy_installのインストール
# wget -P /usr/local/src http://peak.telecommunity.com/d...
# cd /usr/local/src
# python ez_setup.py
Downloading http://pypi.python.org/packages/2.5/s/setupt...
Processing setuptools-0.6c8-py2.5.egg
Copying setuptools-0.6c8-py2.5.egg to /usr/local/python-...
Adding setuptools 0.6c8 to easy-install.pth file
Installing easy_install script to /usr/local/python/bin
Installing easy_install-2.5 script to /usr/local/python/...
Installed /usr/local/python-2.5.2/lib/python2.5/site-pac...
Processing dependencies for setuptools==0.6c8
Finished processing dependencies for setuptools==0.6c8
終了行:
''目次''
#contents
~
----
*目的 [#x57861ad]
*準備 [#ke5afcea]
*インストール [#ufd9ba01]
+ソースの取得
# wget -P /usr/local/src http://www.python.org/ftp/pytho...
~
+ソースの解凍
# cd /usr/local/src
# tar zxvf Python-2.5.2.tgz
~
+コンパイル設定~
[[configureのヘルプ>python-2.5.2のconfigureヘルプ]]
# cd /usr/local/src/Python-2.5.2
# ./configure --prefix=/usr/local/python-2.5.2
~
+インストール
# make
# make install
~
+シンボリックリンクの作成
# ln -s /usr/local/python-2.5.2 /usr/local/python
~
+PATH設定
# vi ~/.bash_profile
PATH=/usr/local/python/bin:$PATH
export PATH
# source ~/.bash_profile
~
+easy_installのインストール
# wget -P /usr/local/src http://peak.telecommunity.com/d...
# cd /usr/local/src
# python ez_setup.py
Downloading http://pypi.python.org/packages/2.5/s/setupt...
Processing setuptools-0.6c8-py2.5.egg
Copying setuptools-0.6c8-py2.5.egg to /usr/local/python-...
Adding setuptools 0.6c8 to easy-install.pth file
Installing easy_install script to /usr/local/python/bin
Installing easy_install-2.5 script to /usr/local/python/...
Installed /usr/local/python-2.5.2/lib/python2.5/site-pac...
Processing dependencies for setuptools==0.6c8
Finished processing dependencies for setuptools==0.6c8
ページ名: