问题原因:
系统是64bit,该库是32bit的,在64bit系统上安装32bit库


解决的方法:
1. 查看哪个安装包包括该库:yum provides libstdc++.so.6
   libstdc++-4.4.7-4.el6.i686
2. 安装 libstdc++-4.4.7-4.el6.i686
    yum install  libstdc++-4.4.7-4.el6.i686
   报错:
--> Finished Dependency Resolution
Error: Protected multilib versions: libstdc++-4.4.7-4.el6.i686 != libstdc++-4.4.7-3.el6.x86_64
 You could try using --skip-broken to work around the problem
 You could try running: rpm -Va --nofiles --nodigest
    2.1 解决的方法:
    yum  update  libstdc++-4.4.7-3.el6.x86_64
然后再运行步骤2的命令

相关文章:

  • 2021-06-05
  • 2021-08-06
  • 2021-11-28
  • 2021-10-06
  • 2022-12-23
  • 2021-12-08
  • 2022-01-24
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-07-30
  • 2021-10-15
  • 2021-07-28
  • 2021-09-04
  • 2021-11-17
相关资源
相似解决方案