启用 Scriptlet 不存在

启用 Scriptlet 不存在

我正在尝试运行下面的命令,但它不断返回此错误warning: /opt/rh/devtoolset-4//enable scriptlet does not exist!

yum install epel-release
yum install centos-release-scl cmake3 hwloc-devel libmicrohttpd-devel openssl-devel git screen nano
yum install devtoolset-4-gcc*
scl enable devtoolset-4 bash

我尝试卸载所有软件包并重新安装它们,但无济于事,有什么建议吗?

答案1

devtoolset-#-runtime软件包也需要安装。

yum install devtoolset-#-runtime

或者

rpm -Uvh $(repoquery --location devtoolset-#-runtime)

(请替换#为版本)

然后您应该在相应的目录中看到启用脚本。

答案2

尝试

#yum reinstall devtoolset-4-runtime

相关内容