Installing¶
There are multiple ways to install bqt.
- As an Isolated environment, recommended for studios.
- As an Addon through Plugget, recommended for single users.
- As a module directly into Blenders python, as an alternative to plugget.
Isolated environment¶
This is our recommendation for studios as it doesn't modify the blender installation.
- Create a virtual environment.
- Activate it by setting the needed Environment Variables.
- Install bqt and any other required dependencies.
- Create a startup script that activates bqt.
- Start Blender with the
--python-use-system-envflag.
This script is only an example. Adopt it to your own studios need.
blender.bat¶
@ECHO OFF
if not exist %USERPROFILE%\.bqt (
mkdir %USERPROFILE%\.bqt
)
if not exist %USERPROFILE%\.bqt\.venv (
REM This python version needs to be consistent your Blender versions python.
uv venv --python 3.11.13 %USERPROFILE%\.bqt\.venv
)
if not exist %USERPROFILE%\.bqt (
mkdir %USERPROFILE%\.bqt
)
set VIRTUAL_ENV=%USERPROFILE%\.bqt\.venv
set VIRTUAL_ENV_PROMPT=bqt
set PATH=%USERPROFILE%\.bqt\.venv\Scripts;%PATH%
set PYTHONPATH=%USERPROFILE%\.bqt\.venv\Lib\site-packages;%PYTHONPATH%
set BLENDER_SYSTEM_SCRIPTS=%USERPROFILE%\.bqt\scripts
REM We are echoing our version into compile to get the latest version. Then we sync the output.
REM In a studio environment you might instead want to supply a requirements file to pip compile.
echo bqt==2.* | uv pip compile - | uv pip sync -
if not exist %USERPROFILE%\.bqt\scripts\startup (
mkdir %USERPROFILE%\.bqt\scripts\startup
)
if not exist %USERPROFILE%\.bqt\scripts\startup\bqt_enable.py (
(
echo import bqt
echo bqt.register(^)
) > %USERPROFILE%\.bqt\scripts\startup\bqt_enable.py
)
REM Update this to your own Blender path.
"C:\Program Files\Blender Foundation\Blender 5.0\blender.exe" --python-use-system-env
Addon through Plugget¶
Installing bqt as an addon through plugget is an alternative, a good alternative for a single user. However, it will modify your blender's python interpreter packages.
- Download the plugget blender addon by clicking on the link.
- Find the installation file in your Downloads folder.

- Double-clicking the file will automatically open it in Blender.
- Run the scripts inside to install the addon.
- Find the Plugget addon by going to Edit > Preferences > Add-ons.
- Type bqt into the search box and click search.
- Click install. This installs the bqt addon and all its dependencies.

Into the interpreter¶
Installing directly to the interpreter isn't recommended but a possibility for a quick and dirty set up.
- Locate your Blenders python interpreter
../Blender Foundation/Blender <version>/<version>/Python/bin/python.exe - Use it to install bqt.
<path-to-python-exe> -m pip install bqt - Locate your blender scripts folder and in the startup folder create a startup script.