我试图在rhel8.3中的python2中导入sos包,但我得到以下错误
[root@svr_1 site-packages]# python2.7
Python 2.7.17 (default, Aug 18 2020, 09:42:29)
[GCC 8.3.1 20191121 (Red Hat 8.3.1-5)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import sos
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named sos
包的rpm已安装。
[root@svr_1 site-packages]# yum list installed | grep sos
sos.noarch 3.9.1-6.el8 @InstallMedia
[root@svr_1 site-packages]#
有人知道吗。在rhel7中,这是正常的。
1条答案
按热度按时间8xiog9wr1#
对于任何面临同样问题的人。rhel8的默认python是python3。因此,在安装rhel8包时,python包将位于/usr/lib/python3.6/site-packages下,并且可以从python3中使用。