1

I can't find most of the applications in the Ubuntu software store. If I go to the terminal and try to install Fortran, for example, using sudo apt-get install gfortran, this is what I get:

E: El paquete «gfortran» no tiene un candidato para la instalación

Translated:

E: Package 'gfortran' has no installation candidate

I'm new in Linux and so far I haven't found a solution to this specific problem. If any one could help me I would be soooo grateful! Thanks for your time

wjandrea
  • 14,236
  • 4
  • 48
  • 98

1 Answers1

1

gfortran is located in the universe repository - please ensure that you have 'Community-maintained free and open-source software' selected in the "Software & Updates" program, as shown below.enter image description here

After adding this repository, you will need to let "Software & Updates" refresh the list of available packages.


From the terminal, enter the commands

sudo add-apt-repository universe
sudo apt update
sudo apt install gfortran
Charles Green
  • 21,339