Um GFortran 7/8/9/10/11 unter Ubuntu 20.04 LTS (Focal Fossa) zu installieren, führen Sie die folgenden Schritte aus:
1. Aktualisieren Sie Ihren Paket-Repository-Cache :
„Bash
Sudo apt-Update
„
2. Installieren Sie gfortran-7/8/9/10/11 :
Für GFortran 7:
„Bash
sudo apt install gfortran-7
„
Für GFortran 8:
„Bash
Sudo apt install gfortran-8
„
Für GFortran 9:
„Bash
sudo apt install gfortran-9
„
Für GFortran 10:
„Bash
sudo apt install gfortran-10
„
Für GFortran 11:
„Bash
Sudo apt install gfortran-11
„
3. Überprüfen Sie die Installation :
Um zu überprüfen, ob GFortran ordnungsgemäß installiert ist, können Sie den folgenden Befehl ausführen.
„Bash
gfortran --version
„
Dieser Befehl sollte die Version von GFortran ausgeben, die auf Ihrem System installiert ist.
4. Kompilieren Sie ein einfaches Fortran-Programm :
Um die Installation zu testen, erstellen Sie ein einfaches Fortran-Programm wie das folgende:
„fortran
Programm hello_world
print*, „Hallo Welt!“
Beende das Programm hello_world
„
Speichern Sie das Programm als „hello_world.f95“ oder „hello_world.f“, je nachdem, welche Version von GFortran Sie installiert haben.
Kompilieren Sie dann das Programm mit dem folgenden Befehl:
„Bash
gfortran hello_world.f95 -o hello_world # (für GFortran 7,8,9,10)
„
„Bash
gfortran -c hello_world.f90 -o hello_world.o # (für GFortran 11)
gfortran hello_world.o -o hello_world
„
5. Führen Sie das Programm aus :
Sobald das Programm kompiliert ist, können Sie es einfach durch Eingabe ausführen.
„Bash
./hello_world
„
Sie sollten die Ausgabe „Hello, world!“ sehen. wird auf der Konsole ausgegeben und zeigt an, dass die GFortran-Installation erfolgreich war.