Emmanuel Leblond
Emmanuel Leblond
While using a Github repo as storage for a plugin is convenient most of the time, it is not the case when the plugin need a processing phase before being...
Using the "recover password" option on the asset store website end up with an email considered as spam by gmail :'-( Most of the time this is due to a...
Another package on pypi is called "piptool" (https://pypi.org/project/piptool), this seems pretty misleading (you can guess how I stumble into it ^^) The package doesn't do anything useful (it just contains...
https://github.com/touilleMan/godot-python/runs/7530573514?check_suite_focus=true#step:7:199 ```log Run meson compile -C build/ ninja: Entering directory `D:/a/godot-python/godot-python/build' [1/16] Generating src/godot/_builtins.pyi with a custom command [2/16] Generating src/godot/_builtins.pyx with a custom command [3/16] Generating src/godot#_hazmat#gdnative_interface.pxd with a...
https://github.com/touilleMan/godot-python/runs/7530366434?check_suite_focus=true#step:7:808 ```log ERROR: Can't open dynamic library: /private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/godot-python-test-i93xfgzx/addons/pythonscript/macos-x86_64/libpythonscript.dylib, error: dlopen(/private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/godot-python-test-i93xfgzx/addons/pythonscript/macos-x86_64/libpythonscript.dylib, 2): Library not loaded: /install/lib/libpython3.9.dylib ``` This is most likely due to the rpath configuration https://github.com/touilleMan/godot-python/blob/e68d3fdf267f2680cafd28fc2681290dd0f5ca58/src/meson.build#L156-L167
Currently there is no automating support for the build system. What this means is exporting a project using godot-python result in a .pck/zip file which lacks the pythonscript directory (well...
Something I'm still not sure about is how to make the difference between the development installation and the release installation of python dependencies. For instance you could install cython, black...
tl;dr: use `./pythonscript/bin/python3 -m pip` instead see #153 ```shell $ cd examples/pong $ ./pythonscript/bin/pip Failed to execute process './pythonscript/bin/pip'. Reason: The file './pythonscript/bin/pip' specified the interpreter '/build/out/python/install/bin/python3', which is not...
``` $ C:\Users\gbleu\source\repos\godot-python\build\windows-64\platforms\Godot_v3.2.2-stable_win64.exe --path examples\pong -e --verbose WinTab context creation failed. Godot Engine v3.2.2.stable.official - https://godotengine.org WinTab context creation failed. Using GLES3 video driver OpenGL ES 3.0 Renderer: GeForce GTX...
Since #181 we use the CPython builds provided by the Python-standalone-build project (and this is a huge win over compiling CPython ourselves ^^) However Python-standalone-build [doesn't support linux 32bits](https://github.com/indygreg/python-build-standalone/releases/tag/20200517) My...