We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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 Terminal # change directory cd /path/to/blender/3.3/python/bin/ # install rtmidi ./python3.10 -m pip install python-rtmidi
The text was updated successfully, but these errors were encountered:
your comment sovled my problem in blender 4.2, thanks a lot!!
Sorry, something went wrong.
Fixed this. Refer to this comment: #22 (comment)
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: