Open ThomZenTury opened 1 month ago
Hi there! Thanks for the useful plugin.
When I installed the .zip through Blender's GUI I couldn't activate the addon because of missing "rtmidi" although it's installed on the system.
Workaround: You need to find where Blender's own python interpreter is located and install rtmidi through this one.
Open Blender.
Go to the Scripting tab.
In the Python console within Blender, run the following command to find the path to the Python executable:
import sys print(sys.executable)
This will print the path to Blender's Python executable, which will look something like
/path/to/blender/3.3/python/bin/python3.10
Open a Terminal, cd into this directory and install rtmidi through Blender's python3.10 interpreter
# open Terminal # change directory cd /path/to/blender/3.3/python/bin/ # install rtmidi ./python3.10 -m pip install python-rtmidi
Restart Blender
Solved my case
your comment sovled my problem in blender 4.2, thanks a lot!!
Hi there! Thanks for the useful plugin.
When I installed the .zip through Blender's GUI I couldn't activate the addon because of missing "rtmidi" although it's installed on the system.
Workaround: You need to find where Blender's own python interpreter is located and install rtmidi through this one.
Open Blender.
Go to the Scripting tab.
In the Python console within Blender, run the following command to find the path to the Python executable:
This will print the path to Blender's Python executable, which will look something like
/path/to/blender/3.3/python/bin/python3.10
Open a Terminal, cd into this directory and install rtmidi through Blender's python3.10 interpreter
Restart Blender
Solved my case