Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install libgfortran.so.4 on ubuntu 16.06

An app I use just updated and it no longer runs on my system. When I try to run the application I get the error: error while loading shared libraries: libgfortran.so.4: cannot open shared object file: No such file or directory

I looked on my system and only libgfortran.so.3 is available. Do you know what should I do to have the next version also? Which package should I install? (my system is ubuntu 16.04)

like image 304
Beni Bogosel Avatar asked Oct 01 '17 20:10

Beni Bogosel


2 Answers

You should do the following for solving the problem

sudo add-apt-repository ppa:jonathonf/gcc-7.1

sudo apt-get update

sudo apt-get install gcc-7 g++-7
sudo apt-get install gfortran-7
like image 102
suhail mahmud Avatar answered Nov 18 '22 13:11

suhail mahmud


This is an inverse problem to R v3.4.0-2 unable to find libgfortran.so.3 on Arch

So you must install GCC 7 including the Fortran part, that includes libgfortran 4.

There are answers describing how to do that at other StackExchange sites:

  • Answer 1
  • Answer 2
  • Answer 3
like image 24
Vladimir F Героям слава Avatar answered Nov 18 '22 11:11

Vladimir F Героям слава