Glumpy Error 'OSError: [WinError 126] The specified module could not be found'

254 Views Asked by At

I've just started using glumpy and I keep having an error.

As far as I could find out there is a problem in ctypes module. apparently the ctype module is trying to load a dll file and it can't for a reason. the peace of code I've written is as follow.

from glumpy import app,gl,gloo
app.use("glfw")
window = app.Window()

The error I keep having is as follows:

    self._handle = _dlopen(self._name, mode)
OSError: [WinError 126] The specified module could not be found

I've tried finding the dll file directory but I don't know from where it is trying to load that dll file

0

There are 0 best solutions below