python 安裝
python下載網址:
1.下載原始碼
2. 安裝
$ tar –jxvf Python-2.5.2.tar.bz2
$ cd Python-2.5.2
$ ./configure
$ make
$ make install
3. 測試
在命令列下輸入python,出現python直譯器即表示已經正確安裝。
在suse10或rhel5(es5)下系統預設已經裝了python但版本是2.4.x;本次安裝後在shell中輸入
#python
會發現顯示結果:
# python
Python 2.4.3 (#1, Dec 11 2006, 11:38:52)
[GCC 4.1.1 20061130 (Red Hat 4.1.1-43)] on linux2
Type “help”, “copyright”, “credits” or “license” for more information.
>>>
版本還是2.4.x的
解決辦法:
#cd /usr/bin
#ll |grep python //檢視該目錄下python
#rm -rf python
#ln -s PREFIX/Python-2.5.2/python ./python //PREFIX為你解壓python的目錄
#python
# python
Python 2.5.2 (#1, Dec 11 2006, 11:38:52)
[GCC 4.1.1 20061130 (Red Hat 4.1.1-43)] on linux2
Type “help”, “copyright”, “credits” or “license” for more information.
>>>
OK!問題解決!
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/27042095/viewspace-745545/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 【python】python安裝Python
- python安裝Python
- python ----python的安裝Python
- 【Python】Python安裝模組Python
- Python安裝教程(非常詳細) python如何安裝使用Python
- Python pip的安裝及解除安裝Python
- 解除安裝 PythonPython
- python安裝mysqlclientPythonMySqlclient
- Python模組安裝Python
- Docker 安裝 pythonDockerPython
- python 安裝protobufPython
- Python pip安裝Python
- python安裝opencvPythonOpenCV
- Docker安裝PythonDockerPython
- python安裝pipPython
- python 安裝 impalaPython
- python的安裝Python
- python 模組安裝Python
- Python安裝教程Python
- brew 安裝python3:如何使用brew安裝Python3Python
- 安裝python pip,再安裝request模組,執行python程式碼Python
- Python uWSGI 安裝配置Python
- 【Python】pyenv 安裝方式Python
- python如何安裝OpenCV?PythonOpenCV
- Python安裝教程分享Python
- Python安裝graphics庫Python
- Python 3安裝MySQLdbPythonMySql
- python安裝simplejsonPythonJSON
- ffmpeg安裝(python篇)Python
- 快速安裝python包Python
- 安裝python並使用Python
- python--安裝PILPython
- pycharm安裝python模組PyCharmPython
- Python2.7安裝Python
- python之feedparser安裝Python
- Python 外掛安裝Python
- 安裝Python requests包Python
- python安裝依賴Python