'Exoplanet Simulator non-zero status error

I am attempting to use a recent simulator, ExoPlaSim, which can model terrestrial exoplanets within the habitable zone. After pip installing the program, I attempted to run the following basic program, directly copy-pasted from the documentation:

import numpy as np
import exoplasim as exo

toi700d = exo.Model(workdir="toi700d_run",modelname="TOI-700d",
                    ncpus=4,resolution="T21",outputtype=".npz")
toi700d.configure(startemp=3480.0, flux=1167.0,                           # Stellar parameters
                  eccentricity=0.,obliquity=0.,fixedorbit=True,           # Orbital parameters
                  synchronous=True,rotationperiod=37.426,                 # Rotation
                  radius=1.19,gravity=11.9,aquaplanet=True,               # Bulk properties
                  pN2=1.47*(1-360e-6),pCO2=1.47*360e-6,ozone=False,       # Atmosphere
                  timestep=30.0,snapshots=720,physicsfilter="gp|exp|sp")  # Model dynamics
toi700d.exportcfg()
toi700d.run(years=10,crashifbroken=True)

This results in the following error trace: enter image description here I'm not quite sure what this error trace means or how I can resolve it. Any help is appreciated. Thank you.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source