



Tag FS2020 specific questions with the MSFS2020 tag.So therefore we would like to ask you all to use the following guidelines when posting your questions: But having all questions about FS2020 in one forum becomes a bit messy. Use ⎈ Ctrl D to exit the python console and quit blender.Which the release of FS2020 we see an explosition of activity on the forun and of course we are very happy to see this. > _install(filepath='/home/shane/Downloads/testaddon.py') Note: For Blender 2.80+, things are slightly different: > import bpy > .addon_install(filepath='/home/shane/Downloads/testaddon.py') Start blender as a python console and type each in directly. There are two ways you can make this work remotely through the CLI. import bpyīpy.ops.wm.addon_install(filepath='/home/shane/Downloads/testaddon.py')īpy.ops.wm.addon_enable(module='testaddon') To enable or disable an addon you need to specify the module name, that is the folder name installed into the addons folder or the filename without. To keep the addon enabled every time you start blender you save your settings with .save_userpref()įor addon_install you give it the filepath to the addon, this is the same file you would choose if you were using blender's GUI. Using python you can install an addon with .addon_install(), you can then enable the addon with .addon_enable() and disable it with .addon_disable().
