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
import pandas as pd
from beakerx import *
beakerx.pandas_display_table()
and fails with
---------------------------------------------------------------------------
NameError Traceback (most recent call last)
<ipython-input-1-242a38fe0d48> in <module>
1 import pandas as pd
2 from beakerx import *
----> 3 beakerx.pandas_display_table()
NameError: name 'beakerx' is not defined
After looking at the commits, it seems like 2ec1122 is the culprit, and after calling the following, things work as expected:
import pandas as pd
from beakerx import *
runtime.BeakerX.pandas_display_table()
Not sure where the bug is here, not having the widget loaded by default or documentation being out of date.
For reference:
jupyter labextension list
JupyterLab v0.35.3
Known labextensions:
app dir: XXXXXX
@jupyter-widgets/jupyterlab-manager v0.38.1 enabled OK
beakerx-jupyterlab v1.2.0 enabled OK
The text was updated successfully, but these errors were encountered:
and fails with
After looking at the commits, it seems like 2ec1122 is the culprit, and after calling the following, things work as expected:
Not sure where the bug is here, not having the widget loaded by default or documentation being out of date.
For reference:
The text was updated successfully, but these errors were encountered: