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?