(1)檢視已安裝的版本執行命令位置
#whereis python2
/usr/bin/python2.7
#whereis python3
/usr/local/bin/python3.6
(2)增加一組新的系統命令鏈結符
#update-alternatives --install /usr/bin/python python /usr/bin/python2.7 100
#update-alternatives --install /usr/bin/python python /usr/local/bin/python3.6 200
移除#update-alternatives --remove python /usr/local/bin/python3.6
(3)顯示和修改實際指向的候選命令
#update-alternatives --config python
(4)修改yum檔案
#vi /usr/bin/yum
#vi /usr/libexec/urlgrabber-ext-down
修改usr/bin/python為usr/bin/python2
Python3 Python讀寫檔案的方法
前言 在指令碼開發中,讀寫檔案是使用非常廣泛的,下面就推薦一種讀寫檔案的方法 一 讀檔案 def read file file name none with open file name,r as f line list f.readlines return line list def read f...
python2,python3 多pip共存問題
coding utf 8 url author chen version python2.x and python3.x 假設現在需要多版本python共存,python2.x用來空間資料主要配合arcgis和python3.x做演算法處理 so,先進入python35修改python.exe 為 ...
python2版本程式轉python3版本
碰見有些python程式是2.7版本的,發現程式中print 函式和xrange 函式需要改變,不想乙個乙個的改,所以寫了乙個程式來更改。import os file1 r 需要更改的程式的路徑 file2 asd.txt with open file1,r encoding utf 8 as f ...