Hi, I have followed the instructions for fenics on Docker. But when I was trying to run my host python code, it came up with the following error:
OSError Traceback (most recent call last)
in
2 from efit import efit
3 import matplotlib.pyplot as plt
----> 4 from mesh.plasmah_mesh_with_down_divertor import *
5 from plasmah.poisson import *
6 import os
~/shared/Documents/tokamak_python_codes/mesh/plasmah_mesh_with_down_divertor.py in
----> 1 import gmsh
2 import sys
3
4 class PlasamHMesh:
5 def init(self, efit):
~/.local/lib/python3.6/site-packages/gmsh-4.8.4-Linux64-sdk/lib/gmsh.py in
38 libpath = find_library(“gmsh”)
39
—> 40 lib = CDLL(libpath)
41
42 use_numpy = False
/usr/lib/python3.6/ctypes/init.py in init(self, name, mode, handle, use_errno, use_last_error)
346
347 if handle is None:
→ 348 self._handle = _dlopen(self._name, mode)
349 else:
350 self._handle = handle
OSError: libGLU.so.1: cannot open shared object file: No such file or directory
Is there anyone who can help me with this problem? Thank you in advance.