pip install pyfluidsynth
(installed 1.23.5) and pip install fluidsynth
(0.2)print(fluidsynth.__version__)
which results in module 'fluidsynth' has no attribute '__version__'
I tried to follow this tutorial https://www.tensorflow.org/tutorials/audio/music_generation but I get the error on waveform = pm.fluidsynth(fs=_SAMPLING_RATE)
. I am using pycharm and I installed all packages into a single virtual environment.
Uninstalling pip uninstall fluidsynth
solved my problem. I think that python maybe was confused by those two because they are named the same.