Connaissances Informatiques >> systèmes >> Ubuntu >> Content
  Derniers articles
  • Comment nettoyer le cache dans Ubunt…
  • Comment faire pour installer Office …
  • Comment faire pour convertir au form…
  • Comment faire pour installer la mach…
  • Comment faire pour configurer Intern…
  • Comment obtenir Ubuntu 10 d'exécuti…
  • Comment puis-je modifier un mot Ubun…
  • Comment Double Boot Ubuntu Après Wi…
  • Comment faire pour activer une camé…
  • Comment faire pour récupérer la pa…
  •   Ubuntu
  • Compétences informatiques de base

  • Linux

  • Mac OS

  • Ubuntu

  • Unix

  • fenêtres

  • windows Vista

  • windows XP

  • Windows 7

  • Windows 10

  • Windows 11

  • Windows 2012

  • Windows 2016

  • Windows 2019

  • Windows 2022

  • Apple

  • Android

  • iOS

  • CentOS
  •  
    Ubuntu

    Comment installer GFortran 7/8/9/10/11 sur Ubuntu 20.04 LTS (Focal Fossa)

    Pour installer GFortran 7/8/9/10/11 sur Ubuntu 20.04 LTS (Focal Fossa), suivez les étapes ci-dessous :

    1. Mettez à jour le cache de votre référentiel de packages :

    ```bash

    sudo apt mise à jour

    ```

    2. Installez gfortran-7/8/9/10/11 :

    Pour GFortran 7 :

    ```bash

    sudo apt installer gfortran-7

    ```

    Pour GFortran 8 :

    ```bash

    sudo apt installer gfortran-8

    ```

    Pour GFortran 9 :

    ```bash

    sudo apt installer gfortran-9

    ```

    Pour GFortran 10 :

    ```bash

    sudo apt installer gfortran-10

    ```

    Pour GFortran 11 :

    ```bash

    sudo apt installer gfortran-11

    ```

    3. Vérifier l'installation :

    Pour vérifier que GFortran est correctement installé, vous pouvez exécuter la commande suivante.

    ```bash

    gfortran --version

    ```

    Cette commande doit afficher la version de GFortran installée sur votre système.

    4. Compiler un programme Fortran simple :

    Pour tester l'installation, créez un programme Fortran simple tel que le suivant :

    ```fortran

    programme hello_world

    print*, "Bonjour tout le monde !"

    terminer le programme hello_world

    ```

    Enregistrez le programme sous `hello_world.f95` ou `hello_world.f`, selon la version de GFortran que vous avez installée.

    Compilez ensuite le programme à l'aide de la commande suivante :

    ```bash

    gfortran hello_world.f95 -o hello_world # (pour GFortran 7,8,9,10)

    ```

    ```bash

    gfortran -c hello_world.f90 -o hello_world.o # (pour GFortran 11)

    gfortran bonjour_monde.o -o bonjour_monde

    ```

    5. Exécutez le programme :

    Une fois le programme compilé, vous pouvez l’exécuter simplement en tapant.

    ```bash

    ./Bonjour le monde

    ```

    Vous devriez voir la sortie « Bonjour tout le monde ! » imprimé sur la console, indiquant que l'installation de GFortran a réussi.

     
    Article précédent:
    Article suivant:
    Articles recommandés
  • Comment mettre en évidence avec la couleur dans Ubuntu 
  • Comment faire pour installer Ubuntu Virtualbox 3.2 Acquisitions 
  • Comment faire de raccourcis clavier dans Ubuntu 
  • Comment compiler Ruby ODBC pour Ubuntu 
  • Comment faire pour installer XP à VMWare sur Ubuntu 
  • Comment désinstaller Ubuntu & Installer Windows 
  • Comment installer l'éditeur de texte Bluefish sur Ubuntu 20.04 
  • Comment faire pour supprimer en toute sécurité les fichiers dans Ubuntu 
  • Ubuntu contrôle du volume ne fonctionne pas cours HDMI 
  • Comment faire pour copier des DVD cryptés avec Ubuntu 
  • Connaissances Informatiques © http://www.ordinateur.cc