underworldcode / UWGeodynamics

Underworld Geodynamics
Other
81 stars 32 forks source link

ModuleNotFoundError: No module named 'glucifer' #217

Closed peanutchun closed 3 years ago

peanutchun commented 3 years ago

I install the docker software on my ubuntu 20.04, and run the jupyter notebook sucessfully follow the install guide https://uwgeodynamics.readthedocs.io/en/latest/Installation.html.

The environment:

And when I write the following code, something wrong

import UWGeodynamics as GEO
import glucifer

the error message just like this

ModuleNotFoundError                       Traceback (most recent call last)
<ipython-input-1-d33b2dc30eb8> in <module>
----> 1 import glucifer

ModuleNotFoundError: No module named 'glucifer'
NengLu commented 3 years ago

Hi peanutchun, The module "glucifer" has been changed into "UWGeodynamics.visualisation", which is the same as glucifer for visualisation, you can import it as: from UWGeodynamics import visualisation as vis

peanutchun commented 3 years ago

Thank you so much

peanutchun commented 3 years ago

Thank you so much