這個人寫的不錯
公司測試機環境不知道給我卸了什麼包,導致yum執行報錯狀況:
系統版本:red hat enterprise linux server release 6.2 (santiago)
核心版本:2.6.32-220.el6.x86_64
報錯情況:
there was a problem importing one of the python modules
required to run yum. the error leading to this problem was:
no module named sqlite
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:
一、公升級或解除安裝python導致:
1
2
3
4
5
6
7
8
1、檢視已安裝python的版本,可能是當前系統存在多個python導致
[root@
test
~]
# whereis python
python:
/usr/bin/python2
.6
/usr/bin/python
/usr/bin/python2
.6-config
/usr/lib/python2
.6
/usr/lib64/python2
.6
/usr/include/python2
.6
/usr/share/man/man1/python
.1.gz
[root@
test
~]
# vi /usr/bin/yum
將
#!/usr/bin/python 修改為 #!/usr/bin/python2.6
如果是源**安裝的,預設路徑是
/usr/local/bin/python2
.6,做個軟鏈結即可
rm
-rf
/usr/bin/python
ln
-s
/usr/local/bin/python2
.6
/usr/bin/python
二、完全重灌python和yum
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
1、刪除現有python
[root@
test
~]
# rpm -qa|grep python|xargs rpm -ev --allmatches --nodeps ##強制刪除已安裝程式及其關聯
[root@
test
~]
# whereis python |xargs rm -frv ##刪除所有殘餘檔案 ##xargs,允許你對輸出執行其他某些命令
[root@
test
~]
# whereis python ##驗證刪除,返回無結果
2、刪除現有的yum
[root@
test
~]
# rpm -qa|grep yum|xargs rpm -ev --allmatches --nodeps
[root@
test
~]
# whereis yum |xargs rm -frv
3、從http:
//mirrors
.ustc.edu.cn
/centos/6
.4
/os/x86_64/packages/
python-2.6.6-36.el6.x86_64.rpm
python-devel-2.6.6-36.el6.x86_64.rpm
python-libs-2.6.6-36.el6.x86_64.rpm
python-pycurl-7.19.0-8.el6.x86_64.rpm
python-setuptools-0.6.10-3.el6.noarch.rpm
python-urlgrabber-3.9.1-8.el6.noarch.rpm
python-iniparse-0.3.1-2.1.el6.noarch.rpm
rpm-python-4.8.0-32.el6.x86_64.rpm
yum-3.2.29-40.el6.centos.noarch.rpm
yum-metadata-parser-1.1.2-16.el6.x86_64.rpm
yum-utils-1.1.30-14.el6.noarch.rpm
yum-plugin-fastestmirror-1.1.30-14.el6.noarch.rpm
yum-plugin-protectbase-1.1.30-14.el6.noarch.rpm
yum-plugin-aliases-1.1.30-14.el6.noarch.rpm
yum-plugin-downloadonly-1.1.30-14.el6.noarch.rpm
[root@
test
~]
# rpm -uvh --replacepkgs python*.rpm
[root@
test
~]
# rpm -uvh --replacepkgs rpm-python*.rpm yum*.rpm
三、執行python進行測試
1
2
3
4
5
6
7
[root@
test
~]
# python
python 2.6.6 (r266:84292, feb 22 2013, 00:00:18)
[gcc 4.4.7 20120313 (red hat 4.4.7-3)] on linux2
type
"help"
,
,
"credits"
or
"license"
for
more
information.
>>>
import
yum
>>>
如上,要是什麼都沒報,則說明ok啦~
本文出自 「smilepad」 部落格,請務必保留此出處
CentOS重新安裝yum
1 問題描述 有時會出現yum不可用的錯誤,可以先解除安裝再重灌。2 操作步驟 7 修改centos base sohu.repo,將其中的 releasever 更改為centos的版本 說明 vi centos base sohu.repo 使用 vi 命令編輯檔案 s releasever 7...
完全解除安裝PHP,重新安裝
解除安裝 以php7為例 刪依賴包 sudo apt get autoremove php 你的版本號 如 sudo apt get autoremove php7 1刪關聯 sudo find etc name php xargs rm rf1清除dept列表裡的殘留資訊 sudo apt pur...
完全解除安裝PHP,重新安裝
解除安裝 以php7為例 刪依賴包 sudo apt get autoremove php 你的版本號 如 sudo apt get autoremove php7 1刪關聯 sudo find etc name php xargs rm rf1清除dept列表裡的殘留資訊 sudo apt pur...