Como nosso aplicativo funciona com python2
, precisamos mudar para o RHEL 8
Depois de instalarmos python2
na máquina RHEL 8, vemos o seguinte:
rpm -qa | grep python2
python2-pip-9.0.3-19.module+el8.6.0+13001+ad200bd9.noarch
python2-setuptools-wheel-39.0.1-13.module+el8.4.0+9442+27d0e81c.noarch
python2-pip-wheel-9.0.3-19.module+el8.6.0+13001+ad200bd9.noarch
python2-2.7.18-11.module+el8.7.0+15681+7a92afba.x86_64
python2-libs-2.7.18-11.module+el8.7.0+15681+7a92afba.x86_64
python2-setuptools-39.0.1-13.module+el8.4.0+9442+27d0e81c.noarch
mas quando tentamos usar import yum
, obtemos um erro sobre 'Nenhum módulo chamado yum' com a seguinte saída:
python
Python 2.7.18 (default, Jun 17 2022, 07:56:00)
[GCC 8.5.0 20210514 (Red Hat 8.5.0-13)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import yum
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named yum
O rpm instalado para o yum é:
rpm -qa | grep yum
yum-4.4.2-11.el8.noarch
yum-utils-4.0.18-4.el8.noarch
e yum aparece como:
more /usr/bin/yum
#!/usr/bin/python
import sys
try:
import yum
except ImportError:
print >> sys.stderr, """\
There was a problem importing one of the Python modules
required to run yum. The error leading to this problem was:
%s
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:
%s
If you cannot solve this problem yourself, please go to
the yum faq at:
http://yum.baseurl.org/wiki/Faq
""" % (sys.exc_value, sys.version)
sys.exit(1)
sys.path.insert(0, '/usr/share/yum-cli')
try:
import yummain
yummain.user_main(sys.argv[1:], exit_code=True)
except KeyboardInterrupt, e:
print >> sys.stderr, "\n\nExiting on user cancel."
sys.exit(1)
e da pip2
lista obtemos esta saída:
pip2 list
pip (9.0.3)
setuptools (39.0.1)
Então, por que estamos recebendo o erro sobre No module named yum
?
https://www.getpagespeed.com/solutions/python-scripts-running-on-rocky-linux-8-can-not-import-yum
Depois de examinar uma pergunta do StackO, uma correção simples pode fazer uma alteração no arquivo
/usr/bin/yum
. Altere a primeira linha!#/usr/bin/python
para!#/usr/bin/python2.7
Há também uma solução de portal do cliente RHEL mais recente, mas mais complexa , de 25 de abril de 2023.
Resoluções
Resolução 1
Resolução 2
Raiz dos problemas)