I'm using Jupyter notebook and I have a problem with the qgrid package. I'm receiving this message:
TypeError: register() missing 1 required positional argument: 'widget'
I've tried changing the widget to 7.0 ('pip install ipywidgets~=7.0') but it continues to give me the TypeError. I'm working on VS CODE w/ Python 3.8.3.
Btw, I will leave here all the error message
TypeError Traceback (most recent call last)
Cell In[15], line 2
1 get_ipython().system('pip install ipywidgets==7.0')
----> 2 import qgrid
4 # Creamos una copia
5 df2 = df.copy()
File c:\Users\Franco\AppData\Local\Programs\Python\Python38\lib\site-packages\qgrid\__init__.py:3
1 from ._version import version_info, __version__ # noqa F401
----> 3 from .grid import (
4 enable,
5 disable,
6 set_defaults,
7 on,
8 off,
9 set_grid_option,
10 show_grid,
11 QgridWidget,
12 QGridWidget,
13 )
16 def _jupyter_nbextension_paths():
17 return [
18 {
19 "section": "notebook",
...
562
563 """
565 _view_name = Unicode('QgridView').tag(sync=True)
TypeError: register() missing 1 required positional argument: 'widget'