inspectrum icon indicating copy to clipboard operation
inspectrum copied to clipboard

Fix - Installation Guide - Building on Debian-based distros

Open caiotelles opened this issue 7 years ago • 3 comments

I would like to propose the below adjustments to the installation guide.

Building on Debian-based distros

git clone git://github.com/jgaeddert/liquid-dsp.git
cd liquid-dsp
./bootstrap.sh
./configure
make
sudo make install
cd ..
sudo apt-get install qt5-default libfftw3-dev cmake pkg-config
mkdir build
cd build
cmake ..
cd ..
make
sudo make install

Tks

caiotelles avatar Sep 23 '16 16:09 caiotelles

Thanks for for this, caiotelles. Much appreciated! Please note, the 3rd to last line 'cd ..' needs to be removed (at least, in my case). Again, many thanks.

ttmatis avatar Feb 22 '17 11:02 ttmatis

My efforts to install Inspectrum to Ubuntu are resulting in the following error when I execute the cmake .. command: Cmake Error: Source directory "/home/username" does not appear to contain CMakelists.txt.

Here is what I have done: git clone git://github.com/jgaeddert/liquid-dsp.git cd liquid-dsp ./bootstrap.sh ./configure make sudo make install cd .. sudo apt-get install qt5-default libfftw3-dev cmake pkg-config mkdir build cd build cmake ..

I've verified that the CMakelists.txt file is not in the /home/username/build directory.

Why isn't this CMakelists.txt file being made? If its relevant, I installed GNU Radio using Pybombs to a prefix/default directory.

ae7lt avatar Apr 02 '17 18:04 ae7lt

I just had the same problem with Cmakelists being missing, as I found this page before the main Inspectrum instructions. These need to be read alongside those. So the first lines in the instructions should actually be:

git clone https://github.com/miek/inspectrum.git
cd inspectrum

Then it works.

tomevans80 avatar Aug 11 '19 20:08 tomevans80