AddRoutes icon indicating copy to clipboard operation
AddRoutes copied to clipboard

Ubuntu 22.04 / Blender 3.3..1 - could not activate - rtmidi not installed - solved

Open ThomZenTury opened this issue 1 year ago • 2 comments

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.

  1. Open Blender.

  2. Go to the Scripting tab.

  3. 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

  1. 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
  1. Restart Blender
  2. Solved my case

ThomZenTury avatar Oct 03 '24 12:10 ThomZenTury

your comment sovled my problem in blender 4.2, thanks a lot!!

str8tiger avatar Nov 01 '24 03:11 str8tiger

Fixed this. Refer to this comment: https://github.com/JPfeP/AddRoutes/issues/22#issuecomment-2524747350

slashv avatar Dec 07 '24 01:12 slashv