Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> 關於Linux >> Linux配置Python環境的方法

Linux配置Python環境的方法

日期:2017/1/25 10:37:32      編輯:關於Linux

  在Linux上想要使用Python,就需要對其環境進行相關配置,因為涉及的步驟比較多,所以小編就給大家做個詳細講解,下面就一起來看看Linux配置Python環境的方法吧。

 Linux配置Python環境的方法

  OS:Oracle Linux Enterprise 5.6

  1.下載

  Python

  版本: Python-2.7.3.tgz

  setuptools

  版本:setuptools-0.6c11.tar.gz(md5)

  也可以采用wget方式下載:

  wget http://pypi.python.org/packages/source/s/setuptools/setuptools-0.6c11.tar.gz#md5=7df2a529a074f613b509fb44feefe74e

  2.安裝Python

  --查看系統自帶的python:

  [root@njdyw ~]# python

  python python2 python2.4

  --安裝Python2.7.3

  [root@njdyw ~]# mkdir /python

  [root@njdyw ~]# cp Python-2.7.3.tgz /python/

  [root@njdyw ~]# cd /python/

  [root@njdyw python]# ls

  Python-2.7.3.tgz

  --解壓

  [root@njdyw python]# tar -zvxf Python-2.7.3.tgz

  [root@njdyw python]# ls

  Python-2.7.3 Python-2.7.3.tgz

  --configure:避免對原有的Python產生影響,必須制定prefix。

  [root@njdyw python]# cd Python-2.7.3

  [root@njdyw Python-2.7.3]# 。/configure --prefix=/usr/local/python2.7.3

  --make:

  [root@njdyw Python-2.7.3]# make

  --make install:

  [root@njdyw Python-2.7.3]# make install

上一頁12下一頁共2頁

Copyright © Windows教程網 All Rights Reserved