在unbuntu中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 12:27:00 浏览: 207
How-to-install-ssh-on-ubuntu.rar_Ubuntu!_ubuntu ssh
在 Ubuntu 中,应该使用 `apt-get` 命令来安装软件包,而不是 `yum` 命令。请使用以下命令来安装 libatomic 库:
```
sudo apt-get update
sudo apt-get install libatomic1
```
这将会更新系统的软件包列表并安装 libatomic 库。安装完库文件后,你可以尝试再次运行程序,这个错误应该就会消失了。
阅读全文