Octave/LimeSuite configuration

I’m struggling with configuring Octave to use with LimeSuite. I’ve downloaded the latest Octave (5.2.0), installed communications, control, and signal packages. I’ve compiled LimeSuite (cmake output below). The problem comes when in Octave calling a routine like LimeInitialize can’t find the library. The library is located in /usr/local/lib. Octave is installed via snap so I haven’t been able to create a link or copy the library to someplace that Octave can find it. Any ideas? Thanks –

Octave output

LoadLimeSuite
LimeInitialize
error: /home/mike/github/LimeSuite/octave/LimeSuite.oct: failed to load: libLimeSuite.so.20.01-1: cannot open shared object file: No such file or directory

Cmake Output
– ######################################################
– ## LimeSuite enabled features
– ######################################################

  • LimeSuiteHeaders, The lime suite headers
  • LimeSuiteLibrary, The lime suite library
  • ConnectionFX3, FX3 Connection support
  • ConnectionFTDI, FTDI Connection support
  • ConnectionXillybus, PCIE Xillybus Connection support
  • LimeSuiteGUI, GUI Application for LimeSuite
  • LimeSuiteExamples, LimeSuite library API examples
  • LimeUtilCommand, Command line device discovery utility
  • LimeQuickTest, LimeSDR-QuickTest Utility
  • SoapySDRLMS7, SoapySDR bindings for LMS7
  • LimeSuiteDesktop, LimeSuite freedesktop integration
  • LimeSuiteOctave, LimeSuite Octave integration

– ######################################################
– ## LimeSuite disabled features
– ######################################################

  • ConnectionEVB7COM, EVB+COM Connection support
  • ConnectionSTREAM_UNITE, STREAM+UNITE Connection support
  • ConnectionRemote, Remote Connection support for testing
  • ConnectionSPI, Rasp Pi 3 SPI Connection support
  • LimeSuiteDocAPI, LMS API Doxygen documentation

Suspect that having Octave in a snap and Lime Suite outside may be causing problems and would recommend installing Octave from source into /usr/local also.

Okay, will do that. Thanks for response