When trying to run px8 it says:
>./px8I'm running Linux Mint Cinnamon, and my libpython is 3.5.
>./px8: error while loading shared libraries: libpython3.4m.so.1.0: cannot open shared object file: No such file or directory
8-bit Fantasy Console · By
It might be as simple as
sudo ln -s /usr/lib/x86_64-linux-gnu/libpython3.5m.so.1.0 /usr/lib/libpython3.4m.so.1.0
However, I'm on Debian Testing, and it uses Python 3.6
So, you might need to locate your specific libpython3 just to be sure.
sudo apt-get install mlocate
&& updatedb
locate libpython3.
In my case, I used:
sudo ln -s /usr/lib/x86_64-linux-gnu/libpython3.6m.so.1.0 /usr/lib/libpython3.4m.so.1.0
If this doesn't solve it, you can look here for more info. https://github.com/Gigoteur/PX8/issues/65
you'll need an app that plays MIDI. likely, either timidity or fluidsynth.
timidity defaults to using freepats, so that might be the easiest route.
sudo apt-get install timidity-daemon freepats vmpk
to use another soundfont, you'd need to install one, then edit /etc/timidity/timidity.cfg
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
If you'd rather use fluidsynth, then you can look inside the qsynth app for setup.
sudo apt-get install fluidsynth qsynth qjackctl fluid-soundfont-gm fluid-soundfont-gs opl3-soundfont vmpk
You'll need to tell qsynth which soundfonts you have installed.
and specify if your system uses ALSA, PulseAudio, or JACK
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
If you decide to use JACK, then qjackctl helps with setting that up.
Just open it first, and press Start, to get JACK running.
That's up to you. It might be easier to skip JACK,
and just tell qsynth that you're using ALSA or PulseAudio
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
you can test your setup with VMPK, the Virtual MIDI Piano Keyboard.
Edit > Connections > then select the appropriate Output,
either timidity or fluidsynth.
set volume, tap a few keys, should hear tones.