web-dev-qa-db-fra.com

Comment exécuter un script csh pour installer f2c?

J'ai besoin d'installer f2c sous Linux. Compte tenu des étapes;

  1. Télécharger le script d'installation: Télécharger install_f2c_linux.csh.

  2. Exécuter le script d'installation

    # chmod +x install_f2c_linux.csh
    # ./install_f2c_linux.csh
    

Je lance la deuxième étape dans le répertoire racine et utilisateur. Mais, il dit

curl: Command not found.
tar: f2c.tar: Cannot open: No such file or directory
tar: Error is not recoverable: exiting now
gunzip: No match.
f2c: No such file or directory.

Comment résoudre le problème?

4

Le traducteur FORTRAN 77 en C/C++ est déjà empaqueté dans les référentiels Ubuntu sous la forme _f2c_ package .

Vous pouvez l'installer avec:

_Sudo add-apt-repository universe
Sudo apt-get update 
Sudo apt-get install f2c
_

Remarque: développez une nouvelle bonne habitude - avant d’essayer de compiler quelque chose manuellement, visitez http://packages.ubuntu.com et recherchez l’application requise ici.

6
N0rbert

Vous devez installer curl:

Sudo apt install curl

Mais il vaut mieux utiliser le représentant Ubuntu et l’installer avec:

Sudo apt-get install f2c

comme N0rbert posté .

4
abu_bua