DearPyGui icon indicating copy to clipboard operation
DearPyGui copied to clipboard

Release 2.1.0 dropped support for Debian 11

Open ajaust opened this issue 3 months ago • 0 comments

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:

  1. Go to this repository
  2. Build the a Codespace from the repository
  3. Open a terminal and start the example application python main.py
  4. 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

ajaust avatar Sep 23 '25 12:09 ajaust