hoffstadt / hoffstadt/DearPyGui

ModuleNotFoundError: No module named 'dearpygui._dearpygui' on Raspberry Pi

Open
#1,725 5 comments 0 reactions 0 assignees View on GitHub
state: pending type: bug
Dominant language
C++
Stars
15.6k
Forks
783
PR merge metrics
No merged PRs in 30d

Description

## Version of Dear PyGui

Version: 1.5.0
Operating System: Linux version 5.15.32-v8+ (dom@buildbot) (aarch64-linux-gnu-gcc-8 (Ubuntu/Linaro 8.4.0-3ubuntu1) 8.4.0, GNU ld (GNU Binutils for Ubuntu) 2.34) #1538 SMP PREEMPT Thu Mar 31 19:40:39 BST 2022
Hardware: Raspberry Pi 4 Model B/2GB

## My Issue/Question

After installing on Raspberry Pi 4 B I get an error:

```
Traceback (most recent call last):
File "/home/pi/Desktop/New/test.py", line 1, in
import dearpygui.dearpygui as dpg
File "", line 259, in load_module
File "/usr/local/lib/python3.9/dist-packages/dearpygui-1.5.0-py3.9-linux-aarch64.egg/dearpygui/dearpygui.py", line 22, in
import dearpygui._dearpygui as internal_dpg
ModuleNotFoundError: No module named 'dearpygui._dearpygui'
```

Any ideas on how to fix it?

## Standalone, minimal, complete and verifiable example

```python
import dearpygui.dearpygui as dpg

def save_callback():
print("Save Clicked")

dpg.create_context()
dpg.create_viewport()
dpg.setup_dearpygui()

with dpg.window(label="Example Window"):
dpg.add_text("Hello world")
dpg.add_button(label="Save", callback=save_callback)
dpg.add_input_text(label="string")
dpg.add_slider_float(label="float")

dpg.show_viewport()
dpg.start_dearpygui()
dpg.destroy_context()
dpg.destroy_context()
```

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.