Linuxにf2cをインストールする必要があります。手順を考えると、
インストールスクリプトのダウンロード:install_f2c_linux.csh
をダウンロードします。
インストールスクリプトを実行する
# chmod +x install_f2c_linux.csh
# ./install_f2c_linux.csh
ルートおよびユーザーディレクトリで2番目のステップを実行します。しかし、それは言う
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.
問題を解決する方法は?
FORTRAN 77 to C/C++ Translatorは、Ubuntuリポジトリに f2c
package として既にパッケージ化されています。
以下でインストールできます:
Sudo add-apt-repository universe
Sudo apt-get update
Sudo apt-get install f2c
注:新しい良い習慣を開発する-手動で何かをコンパイルする前に、 http://packages.ubuntu.com にアクセスして、ここで必要なアプリケーションを検索してください。
Curlをインストールする必要があります。
Sudo apt install curl
ただし、Ubuntu担当者を使用してインストールすることをお勧めします。
Sudo apt-get install f2c
as N0rbert posted 。