我需要在Linux中安装f2c。给出步骤;
install_f2c_linux.csh。我在根目录和用户目录中运行第二步。但是,上面写着
curl: Command not found.
tar: f2c.tar: Cannot open: No such file or directory
tar: Error is not recoverable: exiting now
gunzip: No match.
f2c: No such file or directory.如何解决这个问题?
发布于 2018-09-21 07:46:39
FORTRAN 77到C/C++翻译器已经在Ubuntu存储库中打包为f2c套餐。
您可以通过以下方式安装它:
sudo add-apt-repository universe
sudo apt-get update
sudo apt-get install f2c注意:养成新的好习惯-在尝试手工编译一些东西之前,访问http://packages.ubuntu.com并在这里搜索所需的应用程序。
发布于 2018-09-21 07:51:35
https://askubuntu.com/questions/1077151
复制相似问题