rust依赖c语言工具链,使用官网的方式在ubuntu20.04中安装时,虽然安装成功,但运行时报错:

linker `cc` not found 

如果使用 sudo apt install rustc,会遇到依赖深渊也是安装失败。

解决方案:

使用aptitude安装rustc

sudo apt install aptitude
sudo aptitude install rustc  // 这里有等待输入,先输入n,再输入Y

  

相关文章:

  • 2021-12-06
  • 2022-02-09
  • 2022-01-30
  • 2021-06-09
  • 2021-10-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-11-29
  • 2021-08-08
  • 2021-11-09
  • 2021-08-09
  • 2021-04-21
  • 2022-02-08
  • 2021-08-21
相关资源
相似解决方案