In this post I will show you how you can set up a Fortran development environment in some easy steps in ubuntu Linux.
GFORTRAN
Though there are many different Fortran compilers available for Linux systems; I will be installing gfortran (or GNUFortran), the Fortran compiler from GNU,( the custodian of many prominent and important free software). The reason for the choice is no other than its ease of installation and strong support from a prominent organization (GNU) in the Free and Open-Source software community.
Open your terminal on your Linux machine (shortcut for ubuntu systems => CTRL + Alt + T) and type the following command to first of all update your system software repositories:
sudo apt-get update
Then install gfortran:
sudo apt-get install gfortran
ALL DONE!!!
Happy Linux’NG!
Latest posts by ALEXANDER OMOROKUNWA (see all)
- Time complexity analysis: How to calculate running time - April 1, 2024
- Sovereign Tech Fund Invests €1M In GNOME’s Open-Source Project - November 19, 2023
- Google’s Bard AI: ChatGPT Rival or The Next Frontier in AI and NLP Technology - February 8, 2023