更改yum的預設版本

2021-08-08 04:07:41 字數 462 閱讀 8540

因為安裝了python2.7 後面有安裝了python3.5

但是python3與python2有很大的區別所以導致在使用yum的時候出現了錯誤。

linux 裡面安裝了兩個版本的python的話 執行yum就會報錯

-bash: ./scripts/mysql_install_db: /usr/bin/perl: bad interpreter: 沒有那個檔案或目錄

解決: yum -y install perl perl-devel

解決方法:

查詢yum和 yum-updatest檔案,並編輯此py檔案

root@develop local]# which yum

/usr/bin/yum

將#!/usr/bin/python

改為:#!/usr/bin/python2.7(自己另乙個版本的)

更改預設的python版本

步驟一 首先檢視python預設版本 ubuntu user python version python 2.7步驟二 檢視系統是否已經安裝python3.5 ubuntu user whereis python3.5步驟三 刪除原有的python連線檔案 ubuntu user rm usr bi...

更改Ubuntu預設python版本

當你安裝 debian linux 時,安裝過程有可能同時為你提供多個可用的 python 版本,因此系統中會存在多個 python 的可執行二進位制檔案。一般ubuntu預設的python版本都為2.x,如何改變python的預設版本呢?下面來一起看看吧。你可以按照以下方法使用 ls 命令來檢視你...

更改 Ubuntu預設Python版本

sudo rm python 刪除原來的python sudo ln s python3 python 建立python3.5的軟連線 1 使用 ls 命令來檢視你的系統中都有那些 python 的二進位制檔案可供使用,如下圖 2 檢視python替換版本資訊 update alternatives...