I am trying to run this code using Notepad++ version 8.14
from dearpygui.core import *
from dearpygui.simple import *
#window object setting
set_main_window_size(540, 720)
set_global_font_scale(1.25)
set_theme("Gold")
with window("SMS SMS Spam Filter", width = 520, height = 667):
print("GUI is runngin")
start_dearpygui()
but the output is error which is
from dearpygui.core import *
ModuleNotFoundError: No module named 'dearpygui.core'
I have tried pip install dearpygui
on command prompt, but it showed the same. Anyone can solve this?
DearPyGui is under heavy devlopment and the code you are trying to run is the "old" way of doing things (prior to version 0.6). Here is the comparaison between an old and an up-to-date version of the library :
Old version
New version
See the docs for more details.