codecamp

Fortran Linux

APT 系列

该系列主要包括 Debian、Ubuntu、Deepin、Mint 等等操作系统发行版。

# 检查是否已安装 gfortran
which gfortran

# 如果没有任何返回内容,使用 APT 工具安装 gfortran
sudo apt install -y gfortran

# 检查 gfortran 版本
gfortran --version

# 由于 APT 源中可能根据系统版本不同提供的最新 gfortran 版本也不同,可以自定义添加源安装最新 gcc 10
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt update
sudo apt install gfortran-10

RPM 系列

该系列主要包括 Red Hat Linux、CentOS、Fedora、OpenSUSE 等等操作系统发行版。

# 一般 RPM 系列操作系统安装 gfortran
sudo yum install -y gcc-gfortran

# 自从 Fedora 22 之后 Fedora 默认包管理工具变为 DNF
sudo dnf install -y gcc-gfortran

Arch 系列

该系列主要包括 Archlinux、Manjaro、Antergos 等等操作系统发行版。

sudo pacman -S gcc-fortran


Fortran MacOS
Fortran Windows
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }