- Just installed dearpygui 1.8.0 module in a proper environment.
- Then I ran the first step's code from: https://dearpygui.readthedocs.io/en/latest/tutorials/first-steps.html
- here is the code :
import dearpygui.dearpygui as dpg
dpg.create_context()
dpg.create_viewport(title='Custom Title', width=600, height=300)
with dpg.window(label="Example Window"):
dpg.add_text("Hello, world")
dpg.add_button(label="Save")
dpg.add_input_text(label="string", default_value="Quick brown fox")
dpg.add_slider_float(label="float", default_value=0.273, max_value=1)
dpg.setup_dearpygui()
dpg.show_viewport()
dpg.start_dearpygui()
dpg.destroy_context()
- returns the error :
The kernel for Documents ... /DearPyGui/Studies&Tries.ipynb appears to have died. It will restart automatically.
- The same code ran directly from my python installation works well.
- Command:
(dpg_py310) amen@ubu:~$ python dpg01.py
- reinstalling dearpygui 1.8.0 gives the same result
- donwngrading to dearpygui 1.7.3 makes no change
- no solution found on the net
Need help