miek / inspectrum

Radio signal analyser
GNU General Public License v3.0
2.08k stars 266 forks source link

Fix - Installation Guide - Building on Debian-based distros #91

Closed caiotelles closed 10 months ago

caiotelles commented 7 years ago

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

ttmatis commented 7 years ago

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.

ae7lt commented 7 years ago

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.

tomevans80 commented 5 years ago

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.