-
-
Notifications
You must be signed in to change notification settings - Fork 758
Open
Labels
Description
Version of Dear PyGui
Version: 2.1.0
Operating System: Debian 11 (Bullseye) and Python 3.12
My Issue/Question
I use a GitHub Codespace for testing a graphical application. It appears that DearPyGUI 2.1.0 is not compatible with Python 3.12 and Debian 11 (Bullseye) anymore. When starting the application, I get the following error message:
$ python main.py
Traceback (most recent call last):
File "/workspaces/dearpygui-bullseye11-glibcxx/main.py", line 1, in <module>
import dearpygui.dearpygui as dpg
File "/home/vscode/.local/lib/python3.12/site-packages/dearpygui/dearpygui.py", line 22, in <module>
import dearpygui._dearpygui as internal_dpg
ImportError: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.30' not found (required by /home/vscode/.local/lib/python3.12/site-packages/dearpygui/_dearpygui.so)Downgrading to DearPyGui 2.0.0 resolves the issue.
To Reproduce
Steps to reproduce the behavior:
- Go to this repository
- Build the a Codespace from the repository
- Open a terminal and start the example application
python main.py - The error message is printed
Expected behavior
The application starts up without any error messages.
Standalone, minimal, complete and verifiable example
You can create a codespace and run the code example (first steps example from the DearPyGui documentation) from this repository: https://github.com/ajaust/dearpygui-bullseye11-glibcxx/tree/main