DearPyGui icon indicating copy to clipboard operation
DearPyGui copied to clipboard

Symbol not found: __ZTTNSt3__114basic_ifstreamIcNS_11char_traitsIcEEE

Open Casper-Mars opened this issue 1 year ago • 1 comments

Version of Dear PyGui

Version: 1.10.0 Operating System: macos 11.6

My Issue

Here is the error:

Traceback (most recent call last): File "/xxxxx/main_gui.py", line 1, in import dearpygui.dearpygui as dpg File "/opt/homebrew/lib/python3.11/site-packages/dearpygui/dearpygui.py", line 22, in import dearpygui._dearpygui as internal_dpg ImportError: dlopen(/opt/homebrew/lib/python3.11/site-packages/dearpygui/_dearpygui.so, 2): Symbol not found: __ZTTNSt3__114basic_ifstreamIcNS_11char_traitsIcEEEE Referenced from: /opt/homebrew/lib/python3.11/site-packages/dearpygui/_dearpygui.so (which was built for Mac OS X 13.0) Expected in: /usr/lib/libc++.1.dylib in /opt/homebrew/lib/python3.11/site-packages/dearpygui/_dearpygui.so

To Reproduce

Just run the example code.

# Here's some code anyone can copy and paste to reproduce your issue
import dearpygui.dearpygui as dpg

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

with dpg.window(label="tutorial"):
    dpg.add_button(label="Press me")

more_code_to_explain_my_issue()

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

Casper-Mars avatar Dec 15 '23 03:12 Casper-Mars

This code runs perfectly fine on Win 10, DPG 1.10.1. My guess is that MacOS 11 is not supported properly.

bandit-masked avatar Dec 16 '23 20:12 bandit-masked