I recently set up a new Conda environment and brought up previously working codes However, I found out that Jupyter widget does not seem to work properly
I did below things
conda install -c conda-forge ipywidgets
jupyter nbextension enable --py widgetsnbextension --sys-prefix
Could anyone tell me what am I missing??
from ipywidgets import widgets, Layout, Textarea, IntSlider, RadioButtons
transcripted = widgets.Textarea("hello", layout=Layout(width='100%', display='inline-flex', flex_flow = 'row wrap'))
submit_button = widgets.Button(description="submit")
display(transcripted)
display(submit_button)
the result is as below
Textarea(value='hello', layout=Layout(display='inline-flex', flex_flow='row wrap', width='100%'))
Button(description='submit', style=ButtonStyle())