Latest KWR fails to run on newly installed x86 Ubuntu 22.04.3 LTS server [fixed]
This x86 machine was just loaded with Ubuntu and KWR, but KWR complains about libsamplerate being missing.. Knowing very little about Python, I haven't figured out what I need to load from apt or pip3 in order to solve this problem. Can anyone help?
Thanks,
Rob
wsprdaemon@N8GA-BL-1:~/wsprdaemon/kiwiclient$ python3 ./kiwirecorder.py
Traceback (most recent call last):
File "/home/wsprdaemon/wsprdaemon/kiwiclient/./kiwirecorder.py", line 30, in <module>
from samplerate import Resampler
File "/home/wsprdaemon/wsprdaemon/kiwiclient/samplerate/__init__.py", line 9, in <module>
from samplerate.lowlevel import __libsamplerate_version__
File "/home/wsprdaemon/wsprdaemon/kiwiclient/samplerate/lowlevel.py", line 32, in <module>
raise OSError('{} not found'.format(lib_basename))
OSError: libsamplerate not found
wsprdaemon@N8GA-BL-1:~/wsprdaemon/kiwiclient$
Comments
Nevermind.
sudo apt install libsamplerate0
solved my problem. Hopefully this thread will help others.