BradyAJohnston / MolecularNodes

Toolbox for molecular animations in Blender, powered by Geometry Nodes.
https://bradyajohnston.github.io/MolecularNodes/
MIT License
872 stars 83 forks source link

I removed the molecular nodes from Blender but it still works #549

Closed lucianopetrigh closed 1 month ago

lucianopetrigh commented 1 month ago

Describe the bug I can't remove it from Blender even though i removed it from Preferences addons list. How to remove it completely?

To Reproduce Steps to reproduce the behavior: On the splash screen when i click molecular nodes it still appears. i reinstalled it to remove it as described here: https://github.com/BradyAJohnston/MolecularNodes/issues/360

but still didnt work. the addon doesnt appear in the addon list in the preferences

using popos 22.04 (same as ubuntu 22.04)

please help i want to remove it.

BradyAJohnston commented 1 month ago

Apologies - proper uninstall was bugged but will be fixed in 4.2. The add-on isn't installed, just a starting Application Template.

I am unsure where it will be for Linux, but on MacOS there is a folder here that holds the template, and if you remove it will uninstall the template:

"/Users/brady/Library/Application Support/Blender/4.2/scripts/startup/bl_app_templates_user/Molecular Nodes"

If you copy and paste this code into the python console inside of Blender, it will give you the path to look for:

import bpy
import os
bpy.utils.user_resource(
        "SCRIPTS", path=os.path.join("startup", "bl_app_templates_user"), create=False
    )
lucianopetrigh commented 1 month ago

Hi.. thanks for the reply.

When you gave me the path to look for in the console ,, i found it... '/home/(user)/.config/blender/4.1/scripts/startup/bl_app_templates_user'

thank you.