[Discuss-gnuradio] pybombs installation fails

2015-09-16 Thread Mike Gilmer
Following the instriuctions on http://gnuradio.org/redmine/projects/pybombs/wiki/QuickStart I tried to run the installation: ./pybombs install gnuradio It appears to start up OK, but after "Loading recipes" it displays "Installing packages" and gets through several dozen of them until it

Re: [Discuss-gnuradio] pybombs installation fails

2015-09-16 Thread Chris Kuethe
capture the output from "./pybombs install -v -v -v gnuradio", and stick it on pastebin so we can have a look at it. It looks like pybombs is trying to recompile make and gcc and goodness knows what else... I'm curious about why it decided to do that. On Wed, Sep 16, 2015 at 9:25 AM, Mike Gilmer

Re: [Discuss-gnuradio] pybombs installation fails

2015-09-16 Thread Mike Gilmer
Thanks guys. The output (somewhat abbreviated) is at http://pastebin.com/BqvwB58y I am running Windows 8.1 Mike On Wed, Sep 16, 2015 at 3:52 PM, Tom Rondeau wrote: > On Wed, Sep 16, 2015 at 3:48 PM, Chris Kuethe > wrote: >> >> capture the output

Re: [Discuss-gnuradio] pybombs installation fails

2015-09-16 Thread Chris Kuethe
It's been a decade since I last played with cygwin, but under the hood pybomb can do things like "apt-get install gcc" or "rpm -i fftw-devel" - I'm trying to figure out what the command is to to get cygwin to go out and download/install some package from the internet, and how you can query what

Re: [Discuss-gnuradio] pybombs installation fails

2015-09-16 Thread Tom Rondeau
On Wed, Sep 16, 2015 at 6:12 PM, Chris Kuethe wrote: > It's been a decade since I last played with cygwin, but under the hood > pybomb can do things like "apt-get install gcc" or "rpm -i fftw-devel" > - I'm trying to figure out what the command is to to get cygwin to go >

Re: [Discuss-gnuradio] pybombs installation fails

2015-09-16 Thread Mike Gilmer
I'm new to this. ..are you asking me to run that install command. .. or? Mike On Sep 16, 2015 5:03 PM, "Chris Kuethe" wrote: > This is what PyBOMBS does... > > https://github.com/gnuradio/pybombs/blob/0382f9253a44135677b656ef08ba438f57f65625/mod_pybombs/sysutils.py#L393

Re: [Discuss-gnuradio] pybombs installation fails

2015-09-16 Thread Chris Kuethe
This is what PyBOMBS does... https://github.com/gnuradio/pybombs/blob/0382f9253a44135677b656ef08ba438f57f65625/mod_pybombs/sysutils.py#L393 https://github.com/gnuradio/pybombs/blob/dc593faf9e1557133c5801fe4aa58198e34407db/mod_pybombs/recipe.py if you could do something like "cygpkg install fftw

Re: [Discuss-gnuradio] pybombs installation fails

2015-09-16 Thread Chris Kuethe
Congratulations, you now know the most of anyone about gnuradio on windows. Most of us here seem to use some sort of linux host. PyBOMBS thinks it has to compile gcc, make, binutils, math libraries, ... because it can't find acceptable binaries. Does cygwin have some sort of command-line package

Re: [Discuss-gnuradio] pybombs installation fails

2015-09-16 Thread Mike Gilmer
I'm running a cygwin shell. Mike On Wed, Sep 16, 2015 at 4:33 PM, Mike Gilmer wrote: > Thanks guys. > > The output (somewhat abbreviated) is at http://pastebin.com/BqvwB58y > > I am running Windows 8.1 > > Mike > > On Wed, Sep 16, 2015 at 3:52 PM, Tom Rondeau

Re: [Discuss-gnuradio] pybombs installation fails

2015-09-16 Thread Richard Bell
Mike, Have you stepped through the procedures outlined in the following two links already: https://gnuradio.org/redmine/projects/gnuradio/wiki/CygwinInstallMain https://gnuradio.org/redmine/projects/gnuradio/wiki/CygwinGettingStarted They are dated, but still helps guide you a fair amount of the

Re: [Discuss-gnuradio] pybombs installation fails

2015-09-16 Thread Mike Gilmer
If I understood the process better I'd be willing to help ferret out the right procedure for cygwin, but I don't think I'd be very effective at it. I'm willing to try a few suggestions though... I mean I'm sure to learn something! I wrestled with which way to go originally - figure out how to

Re: [Discuss-gnuradio] pybombs installation fails

2015-09-16 Thread Martin Braun
On 16.09.2015 15:38, Chris Kuethe wrote: > I don't disagree. I'm happy to write the write, I just don't have any > cygwin machines to test with. ...PyBOMBS2 has hooks for this kind of thing. I'm trying my best to not make this become the Duke Nukem Forever of GNU Radio :) M > > On Wed, Sep 16,

Re: [Discuss-gnuradio] pybombs installation fails

2015-09-16 Thread Chris Kuethe
I don't disagree. I'm happy to write the write, I just don't have any cygwin machines to test with. On Wed, Sep 16, 2015 at 3:34 PM, Tom Rondeau wrote: > On Wed, Sep 16, 2015 at 6:12 PM, Chris Kuethe > wrote: >> >> It's been a decade since I last

Re: [Discuss-gnuradio] pybombs installation fails

2015-09-16 Thread Martin Braun
On 16.09.2015 16:58, Mike Gilmer wrote: > I wrestled with which way to go originally - figure out how to install > linux,and in theory have an easier time of gnuradio, or try the > windows procedure. A co-worker thought the windows path would be > better but these kinds of problems are exactly why

Re: [Discuss-gnuradio] pybombs installation fails

2015-09-16 Thread Mike Gilmer
Rich, I started down that path, ran into trouble (VOLK needed Cheetah or similar, etc.) and got some advice to follow the pybombs route, which generated its own trouble. Academically, of course, I think it would be great to iron out the Windows issues. As I said, if there are suggestions I'd be

Re: [Discuss-gnuradio] pybombs installation fails

2015-09-16 Thread Tom Rondeau
On Wed, Sep 16, 2015 at 3:48 PM, Chris Kuethe wrote: > capture the output from "./pybombs install -v -v -v gnuradio", and > stick it on pastebin so we can have a look at it. > > It looks like pybombs is trying to recompile make and gcc and goodness > knows what else...