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
Error: No module named 'pyFluidSynth' #20
Comments
|
That doesn‘t sound like a pyfluidsynth issue at all. What is the exact import? I think you got that mixed up. Try one of the examples please and report if that works.
Thanks!
… Am Freitag 12.02.2019 um 12:53 schrieb RZz96 ***@***.***>:
i have installed pyFluidSynth using pip but by import pyFluidSynth give an error :ModuleNotFoundError: No module named 'pyFluidSynth'.
also if i import fluidsynth the i get the error ImportError: Couldn't find the FluidSynth library.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.
|
|
Thank you for the reply :) i tried this one and i got error : AttributeError: 'module' object has no attribute 'Synth' import time fs = fluidsynth.Synth() sfid = fs.sfload("example.sf2") fs.noteon(0, 60, 30) time.sleep(1.0) fs.noteoff(0, 60) time.sleep(1.0) fs.delete() |
|
Don't name one of your own modules / scripts |
|
I have this same issue, my script is called player.py Update: it might be that PyFluidSynth is just not compatible with FluidSynth 2 (latest) |
|
@RZz96 and @digimbyte there is some understandable confusion because there's another, somewhat older package on PyPi called fluidsynth which is not maintained here and does not have a but to use in your code you would add at the top |
i have installed pyFluidSynth using pip but by import pyFluidSynth give an error :ModuleNotFoundError: No module named 'pyFluidSynth'.
also if i import fluidsynth the i get the error ImportError: Couldn't find the FluidSynth library.
The text was updated successfully, but these errors were encountered: