Install from packages
Hint
Check out radioconda and conda environment set up process. See Radioconda environment.
LimeSuiteNG library can also be installed as a conda package. LimeSuiteNG provides multiple packages for installation. You can install all possible LimeSuiteNG components by installing the LimeSuiteNG metapackage. If you want to install entire LimeSuiteNG metapackage and already have a gnuradio package in your current environment, execute the following commands:
conda activate <environment>
conda install limesuiteng=[version]
If you want to install entire LimeSuiteNG metapackage, but you are missing gnuradio package in your current environment, execute the following commands:
conda activate <environment>
conda install gnuradio=[version] limesuiteng=[version]
This ensures, that metapackage install pulls the correct gnuradio-limesuiteng plugin sub-package version.
Note
Metapackage and gnuradio package version specification is optional. You can specify version limesuiteng=25.1.0 or version and build string limesuiteng=25.1.0=hba12d79_0 to install exact metapackage or gnuradio package version and it’s components. If version is not specified, conda will install the latest most compatible package versions.
Note
You can check out limesuiteng versions by executing the following command - conda search limesuiteng. To search for gnuradio versions use - conda search gnuradio.
If you only need certain LimeSuiteNG components, for example, development files, you can install a metapackage sub-package as a standalone package:
conda activate <environment>
conda install liblimesuiteng-dev
On Windows LimeSuiteNG conda metapackage links the following sub-packages together:
liblimesuiteng - runtime libraries.
liblimesuiteng-dev - runtime libraries, API and development files.
limesuiteng-cli - command line tools for LimeSDR device control.
limesuiteng-gui - LimeSDR device configuration tool with GUI support.
gnuradio-limesuiteng - LimeSDR plugin for GNURadio. To install plugin as a separate package check out Conda package section.
limesuiteng-soapy - LimeSuiteNG bindings for SoapySDR.
All of the above listed packages can be installed and used independently.