Kubuntu

在 Kubuntu 中安裝 Fortran 90 編譯器

  • March 5, 2018

我正在嘗試執行一個嚴格依賴於 Fortran 90 的包,但在執行其./configure文件後,它顯示以下錯誤:

configure: error: could not find Fortran 90 compiler

編譯 Fortran 95有多種來源,但 90 沒有。

有什麼建議嗎?

Fortran 95 是 Fortran 90 的超集。Fortran 95 編譯器很可能能夠編譯您的 Fortran 90 程式碼。

要從 kubuntu 安裝 GNU Fortran 編譯器,請使用:

sudo apt-get install gfortran

事實上,Fortran 95 標準只是 Fortran 90 標準的一個小升級(與從 Fortran 77 到 Fortran 90 的變化不同)。

引用自:https://unix.stackexchange.com/questions/428267