You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For a data evaluation software, I need among others the matplotlib module. The necessary installation was done according to the information in the READ.ME.
After successful installation, running the project in Godot lead to numerous indescriptive error messages. Running a test Python script containing a matplotlib example in a terminal with the following command
Changing plt.show() to plt.savefig(FILENAME) did not change the result.
The error seems to be related to an issue with different xlib being present on the system (system specific and the ones shipped with the PythonScript addon).
Information for Reproduction
Prerequisites
Host System: Manjaro 22
Platform: x11-64
Kernel: 5.10.161-1-MANJARO
Desktop Environment: Xfce 4.18
Godot v3.5.1.stable.arch_linux, directly installed from Manjaro's Official Repositories
PythonScript Addon v0.50.0, installed directly from Godot's AssetLib
matplotlib installed via pip (numpy and scipy not strictly required, only needed for comparability)
For a data evaluation software, I need among others the
matplotlib
module. The necessary installation was done according to the information in theREAD.ME
.After successful installation, running the project in Godot lead to numerous indescriptive error messages. Running a test Python script containing a
matplotlib
example in a terminal with the following commandPATH/TO/PROJECT/addons/pythonscript/x11-64/bin/python3.8 /PATH/TO/FILE.py
led to the error message
Xlib: request 55 length 16 would exceed buffer size. Segmentation fault (core dumped)
Changing
plt.show()
toplt.savefig(FILENAME)
did not change the result.The error seems to be related to an issue with different
xlib
being present on the system (system specific and the ones shipped with the PythonScript addon).Information for Reproduction
Prerequisites
Commands used for Python Module Installation (Step-by-Step)
cd PATH/TO/PROJECT/addons/pythonscript/x11-64/bin/
chmod u+x ./python3.8
./python3.8 -m ensurepip
./python3.8 -m pip install numpy scipy matplotlib
The text was updated successfully, but these errors were encountered: