0

What is the best method to install gr-gsm on Ubuntu 22.04 that will be compatible with gnuradio 3.10?

moo
  • 878

1 Answers1

2

Package gr-gsm is not available in the apt repositories for Ubuntu 22.04. It is available in 23.04 and 23.10: https://packages.ubuntu.com/search?keywords=gr-gsm&searchon=names&suite=all&section=all

There are a few options (in approximate order of what I would prefer to do, if it were my system):

  1. Update 22.04 to 23.10 using do-release-upgrade then install the package with sudo apt install gr-gsm

  2. Install gr-gsm using the installation instructions available on the gr-gsm website

  3. You may be able to install the gr-gsm package from the newer release without updating your full Ubuntu distribution but this is not straightforward: Install packages from newer release without building (apt pinning)

moo
  • 878