sudo yum -y install libatomic [sudo] password for farsight: There are no enabled repos. Run "yum repolist all" to see the repos you have. You can enable repos with yum-config-manager --enable <repo>
时间: 2023-11-18 11:36:22 浏览: 149
yum.repos.d.tar.gz
这个错误提示是因为你的系统中没有可用的 yum 软件源,你需要先配置好软件源才能安装软件包。
对于 CentOS/RHEL 系统,你可以尝试使用以下命令来配置软件源:
```
sudo yum-config-manager --add-repo http://mirrors.aliyun.com/repo/Centos-7.repo
```
这个命令会将阿里云的 CentOS 7 软件源地址添加到你的系统中。如果你使用的是其他版本的 CentOS/RHEL,需要将命令中的 `Centos-7` 改为对应的版本号。
添加完软件源后,再次运行以下命令安装 libatomic 库:
```
sudo yum install libatomic
```
安装完库文件后,你可以尝试再次运行程序,这个错误应该就会消失了。
阅读全文