You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was trying to run the "Grids" example notebook, but I get an import error in the first cell: ImportError: cannot import name 'GridArray' from 'nata.containers'
I did some tests in the interactive shell, and from nata.containers import * works fine, but it apparently doesn't import the GridArray class:
I noticed the same kind of error with from nata import examples, by the way.
Any idea what this could be about?
Thank you!
The text was updated successfully, but these errors were encountered:
I tried your import, but I got the same error :/ ImportError: cannot import name 'GridArray' from 'nata' (/Users/Mariana/.venv/venv-nata-python3.8/lib/python3.8/site-packages/nata/__init__.py)
It's simply not importing GridArray, I don't understand why... When I try this: import nata dir(nata.containers)
I can see 'GridDataset' in there, but not 'GridArray', which seems very strange.
Hello!
I was trying to run the "Grids" example notebook, but I get an import error in the first cell:
ImportError: cannot import name 'GridArray' from 'nata.containers'
I did some tests in the interactive shell, and
from nata.containers import *
works fine, but it apparently doesn't import the GridArray class:I noticed the same kind of error with
from nata import examples
, by the way.Any idea what this could be about?
Thank you!
The text was updated successfully, but these errors were encountered: