yumソースを更新するとyumが使用できなくなります
1415 ワード
yum構成に関連するパッケージをインストールした後、yumモジュールが見つからないと報告します.
yumパッケージはPython 2に統合されています.6バージョンのLinuxのデフォルトはPython 2のインストールです.6、実行ファイルは/usr/bin/python 2.6
上記パッケージのインストール後、/usr/bin/yumファイルが変更する、Python実行経路が/usr/bin/pythonに変更され、/usr/bin/python 2に変更する.6でいい
転載先:https://www.cnblogs.com/Bccd/p/7404127.html
yum install -y yum-utils device-mapper-persistent-data lvm2
yum list|grep 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
# /usr/bin/yum
more /usr/bin/yum
#!/usr/bin/python
import sys
try:
import yum
except ImportError:
print >> sys.stderr, """
yumパッケージはPython 2に統合されています.6バージョンのLinuxのデフォルトはPython 2のインストールです.6、実行ファイルは/usr/bin/python 2.6
上記パッケージのインストール後、/usr/bin/yumファイルが変更する、Python実行経路が/usr/bin/pythonに変更され、/usr/bin/python 2に変更する.6でいい
転載先:https://www.cnblogs.com/Bccd/p/7404127.html