在Ubuntu中管理Fortran项目,可参考以下方法:
sudo apt update和sudo apt install gfortran,安装后可通过gfortran --version验证。gfortran -o output_file source_file.f90;也可将多个相关文件放在同一目录,编译主程序文件,如gfortran -o output_file main.f90 module_file.f90,或在主程序中使用use语句引入模块。~/.bashrc中,然后使用fpm new创建项目,fpm run运行项目。/usr/lib或/usr/local/lib目录,可用find命令查找,编译时用-L指定库路径,-l指定库名。~/.bashrc中添加export PATH=/path/to/gfortran/bin:$PATH,然后运行source ~/.bashrc。git init、git add、git commit等命令管理代码版本。