Hi, i can’t launch Unreal Engine on debian 12, when i launch it, the editor crash at initialized python and crash.
I send my logs for having a better view of the error code, i am on python 3.11.2 and Nvidia 535.286
Unreal.log (147.4 KB)
Hi, i can’t launch Unreal Engine on debian 12, when i launch it, the editor crash at initialized python and crash.
I send my logs for having a better view of the error code, i am on python 3.11.2 and Nvidia 535.286
Unreal.log (147.4 KB)
Hey there @TacticalCrew! Welcome to the community! This is an odd one, but I think the first course of action would be to try and disable the plugin before the project launches. There’s 2 methods of doing this. One would be editing the uproject file to add a reference to tell the plugin not to be enabled.
"Plugins": [
{
"Name": "PythonScriptPlugin",
"Enabled": false
},
]
The other would be accessing your Project/Config folder and opening the DefaltEngine.ini
and add the category if it’s not there, as well as this listing:
[/Script/Engine.Engine]
+DisabledPlugins=PythonScriptPlugin
Let me know how it goes!