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
python
Python 3.10.10 | packaged by conda-forge | (main, Mar 24 2023, 20:08:06) [GCC 11.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import mdshare
>>> import numpy as np
>>>
>>> local_filename = mdshare.fetch('alanine-dipeptide-3x250ns-backbone-dihedrals.npz')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/jd/mambaforge/lib/python3.10/site-packages/mdshare/api.py", line 121, in fetch
pg.register(
File "/home/jd/mambaforge/lib/python3.10/site-packages/progress_reporter/reporter.py", line 252, in register
self._progress_register(amount_of_work=amount_of_work, description=description, stage=stage, tqdm_args=tqdm_args)
File "/home/jd/mambaforge/lib/python3.10/site-packages/progress_reporter/reporter.py", line 138, in _progress_register
if _attached_to_ipy_notebook_with_widgets():
File "/home/jd/mambaforge/lib/python3.10/site-packages/progress_reporter/reporter.py", line 10, in wrapper
f.res = f()
File "/home/jd/mambaforge/lib/python3.10/site-packages/progress_reporter/reporter.py", line 20, in _attached_to_ipy_notebook_with_widgets
if ipywidgets.version_info[0] < 4:
AttributeError: module 'ipywidgets' has no attribute 'version_info'
>>> with np.load(local_filename) as fh:
... trajs = [fh[key] for key in sorted(fh.keys())]
...
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'local_filename' is not defined
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: