隨著python語言的受歡迎度,python現可以應用於多種作業系統,例如linux、windows、mac os x等。所以我們今天就在linux和windows下如何部署python開發環境,可能小夥伴會問為什麼沒有mac os 下的講解那,我會一臉懵逼的告訴你,南海是中國的。。。
python環境現已基本成為了linux系統的標配,系統安裝時便安裝的python,redhat6與centos6等系統預設安裝的為python2.6的版本。雖然現在python3版本已經更新到python3.5.2,但是現生產環境下python2.7版本還是用的比較多了,那麼我今天來用原始碼安裝python2.7。
[root@localhost src]# wget
[root@localhost python-2.7
.12]# yum groupinstall -y "development tools"
# develoment tools 是redhat系統裡面的乙個編譯環境的組
解壓[root@localhost src]# tar zxvf python-2.7.12.tgz -c ./
編譯安裝[root@localhost src]# cd python-2.7.12
[root@localhost
python-2.7.12]# ./configure --prefix=/usr/bin/python27 # prefix 指定安裝路徑
[root@localhost
python-2.7.12]# make && make install
測試[root@localhost ~]# /usr/bin/python27/bin/python
python 2.7
.12 (default, aug 4
2016, 09:56:11)
[gcc 4.4
.720120313 (red hat 4.4
.7-3)] on linux2
or"license"
for more information.
>>>
加到環境變數中[root@localhost ~]# mv /usr/bin/python /usr/bin/python2.6 #此動作為將之前的python2.6版本進行重新命名
[root@localhost ~]# ln -s /usr/bin/python27/bin/python2.7 /usr/bin/python # 將python2.7鏈結為/usr/bin/python
[root@localhost ~]# yum
there was a problem importing one of the python modules
required to run yum. the error leading to this problem was:
no module named yum
please install a package which provides this module, or
verify that the module
is installed correctly.
it's possible that the above module doesn't match the
current version of python, which is:
2.7.12 (default, aug 4
2016, 09:56:11)
[gcc 4.4.7
20120313 (red hat 4.4.7-3)]
if you cannot solve this problem yourself, please go to
the yum faq at:
實現tab補全功能
對於windows系統我們使用最新版本python3.5.2來作為安裝例項。到此位置基本上我們的python環境算是基本安裝完成,後邊我們就可以進行正式的接觸python,以及講解python的各種用法,灰常有趣哦!!!安裝python環境
對於乙個程式設計師來說,能夠自己配置python直譯器是最基礎的技能 那麼問題來了,現在市面上有兩種python版本 python 2.x和python 3.x 要安裝哪種呢?雖然說 python 2.x 過幾年將不再提供更新 但是不可否認的是,現在許多公司還是 python2.x 的系統 所以說在...
python環境安裝
python環境安裝 1 python 檢視安裝了哪些模組 pip3 list 模組安裝 pip安裝位置 d 01 person 21 python lib site packages具體查詢某個模組的安裝位置的時候,再次pip install x就好了。2 pywin32 3 pyinstalle...
python環境安裝
python2 已經下線,所以以後都是python3以後的版本 python環境搭建 windows環境下 www.python.org官網 選擇可執行檔案 64位3.5.2windows x86 64 executable installer或32位3.5.2 windows x86 execut...