hoffstadt / hoffstadt/DearPyGui
Symbol not found: __ZTTNSt3__114basic_ifstreamIcNS_11char_traitsIcEEE
- Dominant language
- C++
- Stars
- 15.6k
- Forks
- 783
- PR merge metrics
- No merged PRs in 30d
Description
## 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.
```python
# 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()
```
Contributor guide
Assessment
This issue has not been assessed yet.