-
Notifications
You must be signed in to change notification settings - Fork 81
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Blender crashes immediately after launching my addon through blender_vscode #206
Comments
uhh, in this logic I forgot to respect setting called Are you using the setting |
when you open the VS code directly inside folder |
I'm not using blender.addon.moduleName, no. Unsure where / how I would use that? And how would I do this with the directory inside the addon folder? My workspace file is in there so it should always be that directory I think. |
I am basically asking you to paste all blender related VS code settings that you use. |
{
"python.languageServer": "Pylance",
"blender.executables": [
{
"path": "c:\\Program Files\\Blender Foundation\\Blender 4.1\\blender.exe",
"name": "",
"isDebug": false
},
{
"path": "c:\\Program Files\\Blender Foundation\\Blender 4.2\\blender.exe",
"name": "",
"isDebug": false
}
],
} This is my entire |
Yes, as I stated in the initial post it only happens on my desktop PC. It works fine on my laptop. I get the error when hitting Ctrl+Shift+P > Start Blender > 4.2 . Then Blender briefly comes up and then closes again and I get the output from above. I have tried reinstalling the plugin, as well as Blender itself. |
I hope you sent me the config from the problematic PC? xD sry, missed that, I am tired today. |
Of course. |
One other thing I should note, I forgot to mention it, is that initially I got a different error. Initially I got a straight up Blender crash with a Blender crash log. An access violation: I was trying to get it to work for a couple hours and what finally made a difference was to edit the Blender code and comment out the bit where it calls the function that causes the crash:
Blender still then crashed on startup but differently, and that is where the above stuff started. Sorry, should've started with that. |
see readme I want to make sure that blender config is ok - those are various ways of cleanup |
this might be #192 - I am noticing that downgrading wergzeug to 3.0.3 still causes the issues to appear, or my current fix is ineffective... the proper fix is coming in #201 Sorry about your hours of debugging, I know how annoying this is, but it is not obvious to fix without creating new problems. A review is needed, the implementattion is there. |
Yes it definitely sounds like #191 though I get it on startup, not just when opening preferences. |
if you dig ver very deep into developers formu you will find that the issue is |
btw if you use |
I've removed that since I wasn't using it anyway. But the crash with addon_utils is still there. I guess I somehow now have to get back to the access violation crash? And regarding the - yeah, idk if that's easy to change at this point though. Unsure if I will change it to an extension anyway atm. |
My head is not working today, need to sleep. Jus make sure that wrrgzeug dependency does not contain string multiprocessing (v3.0.4) |
Okay, I think I've done that since I only import it in a single file and it was unused there. What I'm unsure about is what I should be doing now? Is this something you can fix on your end in a VSC plugin update? Or should I try to get back to the access violation error? And please don't stay up on my behalf. An answer can wait till tomorrow. 👍 |
The multiprocessing is issue with blender itself. You will find tracking link in 191. On my side I tried to lock werkzeug dependency to version 3.0.3 but I am not sure if it is effective. |
Okay, but the error I have right now is the template_toml one - is this something you can fix or can I try something else on my end? |
Try running the blender with clean config. See the env vars above. |
Clean config as in the stuff that you load from a previous version the first time you start a new version? Sorry, unsure which config you're referring to... |
If you use env var you can force blender to start with no config. I want to check if your config is ok |
Ah, I see. Sorry, I missed that post originally. * Executing task in folder space-engineers-utilities: C:\Program Files\Blender Foundation\Blender 4.2\blender.exe --python c:\Users\enenra\.vscode\extensions\jacqueslucke.blender-development-0.0.24\pythonFiles\launch.py
ADDONS_TO_LOAD [{'load_dir': 'd:\\Modding\\Space Engineers\\tools\\Blender\\Add-ons\\space-engineers-utilities\\space-engineers-utilities', 'module_name': 'space-engineers-utilities'}, {'load_dir': 'c:\\Program Files\\Blender Foundation\\Blender 4.2\\4.2\\scripts\\templates_toml', 'module_name': 'templates_toml'}]
DEBUG: new extensions repository "vscode_development" created
INFO: Removing old link: blender_vscode_development\scripts\addons\space-engineers-utilities
Traceback (most recent call last):
File "c:\Users\enenra\.vscode\extensions\jacqueslucke.blender-development-0.0.24\pythonFiles\launch.py", line 26, in <module>
blender_vscode.startup(
File "c:\Users\enenra\.vscode\extensions\jacqueslucke.blender-development-0.0.24\pythonFiles\include\blender_vscode\__init__.py", line 26, in startup
path_mappings = load_addons.setup_addon_links(addons_to_load)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "c:\Users\enenra\.vscode\extensions\jacqueslucke.blender-development-0.0.24\pythonFiles\include\blender_vscode\load_addons.py", line 38, in setup_addon_links
load_path = _link_addon_or_extension(addon_info)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "c:\Users\enenra\.vscode\extensions\jacqueslucke.blender-development-0.0.24\pythonFiles\include\blender_vscode\load_addons.py", line 64, in _link_addon_or_extension
if addon_has_bl_info(addon_info.load_dir) and is_in_any_addon_directory(addon_info.load_dir):
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "c:\Users\enenra\.vscode\extensions\jacqueslucke.blender-development-0.0.24\pythonFiles\include\blender_vscode\utils.py", line 19, in addon_has_bl_info
with open(addon_dir / "__init__.py") as init_addon_file:
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
FileNotFoundError: [Errno 2] No such file or directory: 'c:\\Program Files\\Blender Foundation\\Blender 4.2\\4.2\\scripts\\templates_toml\\__init__.py'
* Terminal will be reused by tasks, press any key to close it. Note how the load_dir in the header there is wrong, and this causes the error I guess. Weird thing though: Now, when I start Blender 4.1 through VSCode, it doesn't load my startup file, and doesn't offer me to load it either. If I start Blender 4.1 normally through its own shortcut, it loads fine... |
The env var that you set affects also startup file. Remove the env var to get back to normal. The loaddir looks bad, I will look into it and I will try to read into this logic. If I don't come up with anything we can do a debug session together |
Gotcha. Yeah, I should be available evenings EU time or on the weekend. |
Hi, did you have time to look into this yet? Sorry for being pushy - my addon breaks with 4.2 and I can't really fix it properly until I can run my dev environment through VSC. |
I did some progress in the pr, but it is still in review. |
No worries. Good to hear it's coming along! Happy to do testing. |
I got pointed to the Blender Portable release to try whether that works by a friend. Unfortunately that has exactly the same issue.
|
Ahhh I solved it. So. The first clue is that the templates_toml path is to the Blender install directory, not the directory where addons are normally installed to. templates_toml is an example that is distributed with Blender itself. And for some reason, the VSC plugin is trying to load it as an addon (there's a manifest file in that folder, maybe that's why?) but because there's no init file in that folder it fails. Deleting that folder in the Blender install dir allows the VSC plugin to start up Blender as normal, and my addon loads fine. |
Win10, VSC in normal mode (but admin has the same issue)
My addon: https://github.com/enenra/space-engineers-utilities
Note that this issue appears only on my desktop PC, it's fine on my laptop. It only appears with Blender 4.2 - older versions of Blender are fine, though
Add-on not loaded: "templates_toml", cause:
appears - nothing after the colon.My addon is not in a

templates_toml
-folder. It's where it's supposed to be - in its own folder.The text was updated successfully, but these errors were encountered: