Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
ThomZenTury opened this issue Oct 3, 2024 · 2 comments

Comments

@ThomZenTury
Copy link

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
@str8tiger
Copy link

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

@slashv
Copy link

slashv commented Dec 7, 2024

Fixed this. Refer to this comment:
#22 (comment)

@slashv slashv mentioned this issue Dec 7, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants