无法在 Elementary 发行版上编译简单的 C 程序

Cannot compile a simple C program on Elementary distro

我正在使用 elementary OS 5.1.7 Hera(基于 Ubuntu 18.04.4 LT)我创建了一个非常简单的 c 程序:

#include <stdio.h>

int main()
{
  printf( "Hello World!\n" );

  return 0;
}

并执行以下操作:

gcc -o simple simple.c

我收到这个错误:

/usr/lib/gcc/x86_64-linux-gnu/7/cc1: error while loading shared libraries: libisl.so.19: cannot open shared object file: No such file or directory

有什么建议吗?

我用这些解决了:

sudo apt-get remove libisl19 
sudo apt update
sudo apt install build-essential