Installation¶
The plugin can be installed either by downloading a prebuilt binary or by building it from source.
Prebuilt Binary (Safe & Stable)¶
Installing a prebuilt binary is the safe and stable option for most users.
Latest Release: GitHub Releases
Download the latest plugin ZIP file from the releases page.
In PyCharm, go to Settings (or Preferences on macOS) > Plugins.
Click the gear icon next to the “Installed” tab and select Install Plugin from Disk….
Navigate to the downloaded ZIP file and click OK.
Restart PyCharm to complete the installation.
Building from Source (Most Up-to-Date)¶
Building from source provides the most up-to-date features but may be unstable as it reflects the current development state.
Prerequisites¶
JDK 21 or later
Build Steps¶
Clone the repository:
git clone https://github.com/Sakura-Sedaia/BlenderExtensions.git cd BlenderExtensions
Build the plugin using the included Gradle wrapper:
Windows:
.\gradlew.bat buildPlugin
macOS/Linux:
./gradlew buildPlugin
The built plugin ZIP file will be located in the
build/distributions/directory.Follow the installation steps from the Prebuilt Binary section to install the generated ZIP file.
Contributing¶
If you wish to contribute to the development of this plugin, please see the Contributing Guide for detailed setup instructions, which include using IntelliJ IDEA with the DevKit plugin.
Configuration¶
After installation, go to Settings > Tools > Blender Extension Integration to enable Auto-reload extension on save.
Python Interpreter Setup¶
When a managed Blender version is downloaded via the plugin, it now automatically locates the bundled Python interpreter. This allows for immediate linting and stub support without manually finding the python.exe (or python binary) within the Blender installation folders.