in Software by (16.3k points) edited by
0 like 0 dislike
259 views

How I can to install and use new addon/plugin in Blender software?


installing an addon blender
blender install addon online
add-on installation blender

1 Answer

0 like 0 dislike
by (16.3k points)

Addon in one file

  1. Download needed addon/plugin script on local disk. If addon/plugin present as code, then copy all code and past it in text file, then save it with a .py extension, for example, "addon.py".
  2. In Blender open "User preferences" (shortcut Ctrl + Alt + U) and on "Add-ons" tab, click button "Install from file". Then navigate to the file you downloaded and select it.
  3. It should now appear in the window and you can tick the checkbox in the upper right to enable it.

If you would like to have the add-on enabled every time you start Blender, click button "Save user settings" at the bottom.

Alternatively, you can just save it and open it in the text editor and press Run Script.

Addon in several files

Also there have an alternative method that works well with multiple file addons as well:

Move or create an addon directory into the addons folder of your blender settings:

Example for Linux and Blender 2.69:

/home/$user/.blender/2.69/scripts/addons/m3addon

Example for Windows 7 and Blender 2.69:

C:\Users\%username%\AppData\Roaming\Blender Foundation\Blender\2.69\scripts\addons

Example for Windows XP and Blender 2.69:

C:\Documents and Settings\%username%\Application Data\Blender Foundation\Blender\2.69\scripts\addons

Example for Mac OSX and Blender 2.69:

/Users/$USER/Library/Application\ Support/Blender/2.69/scripts/addons

Activate the addon in Blender.

 

Please log in or register to answer this question.