yumpython
① centos7 已安装python 怎么安装yum
sudo yum install epel-release
sudo yum install python34
② 卸载yum和python重新安装,有人出现过这个问题吗
试试这个命令的输出
rpm --verify --all
③ linux下安装yum时报错需要python=2.4请问怎么处理
yum使用python2.0编写的,或许你没安装python,或许你把python的版本升级成了3.0。
解决方法:
修改yum,将首行指定的默认python修改为python2.0的位置。
或
修改/usr/bin/python连接,将其连接到python2.0上。
④ yum python版本 怎么查看
yum info python27
yum info python3
当然,如果你已经安装的话,直接在终端运行 python,就可以看到版本了。
⑤ centos执行yum报错,在python中import yum也提示ImportError: /lib64/libldap-2.4.so.2
版本不匹配,如果没有版本需求的话,就直接更新一下Python或者yum,yum不能用的话,得网上找找资源,手动去编译一下了,之前也碰到过,处理很久才解决,问题不大,但是找资源很费劲
⑥ 如何升级 yum 支持python2.7
由于yum没有兼容python2.7,需要将下面红色的部分由 #!/usr/bin/python 修改为 #!/usr/bin/python2.6。
vi /usr/bin/yum,把下面红色的部分
#!/usr/bin/python
修改为:
#!/usr/bin/python2.6
⑦ 如何查看yum的python版本
>>> help()
Welcome to Python 2.7! This is the online help utility.
If this is your first time using Python, you should definitely check out
the tutorial on the Internet at
Enter the name of any mole, keyword, or topic to get help on writing
Python programs and using Python moles. To quit this help utility and
return to the interpreter, just type "quit".
To get a list of available moles, keywords, or topics, type "moles",
"keywords", or "topics". Each mole also comes with a one-line summary
of what it does; to list the moles whose summaries contain a given word
such as "spam", type "moles spam".
help>
⑧ yum 依赖的python软件包
这可能是你升级导致
解决方法:
sudo vim /usr/bin/yum
#修个python所在的路径,例如
#/usr/local/bin/python2.6
⑨ 升级python3.4 执行yum 如下提示
这个是你升级过python,你把你原来的python 改过来就可以了。打个比方:
我升级了python3.6 ,我当时是ln -s usr/local/python3.6/bin/python3 /usr/bin/python
所以造成了报错。你把原来备份的python改过来就可以了。
你升级过的python改成另外的名字就ok了。我的是ln -s usr/local/python3.6/bin/python3 /usr/bin/python3