[Discuss-gnuradio] pybombs difficulty

2015-08-03 Thread Mike Markowski
I use gentoo at home and have no difficulty keeping gnuradio up to date. At work we're on a standalone network (no internet) so occasionally bring computers home to update them. Lately, I've been having trouble with pybombs. Using a freshly installed ubuntu 15.04, then doing an apt-get update

Re: [Discuss-gnuradio] pybombs difficulty

2015-08-03 Thread lwashbo
Mike, When I ran into this problem, I had to reinstall pybombs. I think the problem lies in changing the installation prefix after installing pybombs. I'm sure there is another way to fix this, I just don't know what it is. When I reinstalled pybombs, I defined the installation prefix when the

Re: [Discuss-gnuradio] pybombs difficulty

2015-08-03 Thread West, Nathan
Logan, For your case deleting inventory.dat would do the trick of effectively resetting pybombs state (and if your done with an install rm the prefix) Mike, Pybombs is hiding the true error. Cmake failed for either VOLK or GNU Radio. Try running pybombs again with -v -v On Monday, August 3, 201

Re: [Discuss-gnuradio] pybombs difficulty

2015-08-03 Thread Mike Markowski
Thanks, Nathan, and all who replied publicly and privately, The problem seems to be that I had installed Anaconda (from Continuum Analytics) which does not include Cheetah by default. It does exist, however, in the python tree installed by ubuntu, and that seemed to confuse things. I installed C

Re: [Discuss-gnuradio] pybombs difficulty

2015-08-03 Thread Washbourne, Logan
Thanks Nathan. Should I have to use sudo when using pybomb commands, now that the installation prefix is outside of my home directory(because I now I have to use sudo when using pybomb commands)? Logan Washbourne Electrical Engineering Graduate Student (Electromagnetics) On Mon, Aug 3, 2015 at

Re: [Discuss-gnuradio] pybombs difficulty

2015-08-03 Thread West, Nathan
You only have to use sudo with pybombs if you don't have write permission to your prefix. In general it's best to avoid using sudo and pybombs together if possible (with the exception of when pybombs asks you for sudo password when using apt-get install). You can either set the prefix to somewhere

Re: [Discuss-gnuradio] pybombs difficulty

2015-08-04 Thread Washbourne, Logan
So I changed the install prefix to /home/username/thesis/target and then deleted the inventory.dat file and removed the previous install prefix folder(this was usr/local, but it actually ended up in usr/local/share, I'm thinking this was a problem because I think there are lingering files). I'm hav

Re: [Discuss-gnuradio] pybombs difficulty

2015-08-04 Thread Iluta V
Hi Logan, Here is a full set of commands for installing in your own home directory via pybombs: git clone https://github.com/gnuradio/pybombs cd pybombs ./pybombs config sudo rm -rf /home/gnuradio sudo mkdir /home/gnuradio sudo chown -R linux /home/gnuradio /home/linux/pybombs rm -rf inventory.d

Re: [Discuss-gnuradio] pybombs difficulty

2015-08-05 Thread Washbourne, Logan
Thanks Iluta and Nathan, My problem was not being able to use the gr-tutorials examples if I didn't have Gnuradio installed in /usr/local, but then I realized that the gr-tutorials was also a pybombs recipe so I used pybombs to install it and everything worked out great! Thank you both for helping