Johnathan Corgan wrote: > Dev Ramudit wrote: > >> I've cleaned out and reinstalled gnuradio from all three computers >> repeatedly, but I end up with the same result every time. Any suggestions? > > Can you check the version of Python and location of GNU Radio on each: > > $ python > Python 2.5.1 (r251:54863, May 2 2007, 16:27:44) > [GCC 4.1.2 (Ubuntu 4.1.2-0ubuntu4)] on linux2 > Type "help", "copyright", "credits" or "license" for more information. >>>> import gnuradio >>>> gnuradio.__file__ > '/usr/local/lib/python2.5/site-packages/gnuradio/__init__.pyc' >>>> from gnuradio import blks2 >>>> blks2.__file__ > '/usr/local/lib/python2.5/site-packages/gnuradio/blks2/__init__.pyc' >>>> from gnuradio import blks2impl >>>> blks2impl.__file__ > '/usr/local/lib/python2.5/site-packages/gnuradio/blks2impl/__init__.pyc' > > Finally, the output of ./config.guess on each: > > $ ./config.guess > x86_64-unknown-linux-gnu > > Thanks. >
For the Debian desktop: Python 2.4.4 (#2, Jul 21 2007, 11:00:24) [GCC 4.1.3 20070718 (prerelease) (Debian 4.1.2-14)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import gnuradio >>> gnuradio.__file__ '/usr/local/lib/python2.4/site-packages/gnuradio/__init__.pyc' >>> from gnuradio import blks2 >>> blks2.__file__ '/usr/local/lib/python2.4/site-packages/gnuradio/blks2/__init__.pyc' >>> from gnuradio import blks2impl >>> blks2impl.__file__ '/usr/local/lib/python2.4/site-packages/gnuradio/blks2impl/__init__.pyc' ./config.guess : i686-pc-linux-gnu ---- For the Fedora desktop: Python 2.4.4 (#1, Oct 23 2006, 13:58:18) [GCC 4.1.1 20061011 (Red Hat 4.1.1-30)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import gnuradio >>> gnuradio.__file__ '/usr/local/lib64/python2.4/site-packages/gnuradio/__init__.pyc' >>> from gnuradio import blks2 >>> blks2.__file__ '/usr/local/lib64/python2.4/site-packages/gnuradio/blks2/__init__.pyc' >>> from gnuradio import blks2impl >>> blks2impl.__file__ '/usr/local/lib64/python2.4/site-packages/gnuradio/blks2impl/__init__.pyc' ./config.guess : x86_64-unknown-linux-gnu ---- I reverted the debian laptop to a previous version of the trunk(6400) to see if that would help any, but it didnt seem to. It's still re-making to the current version right now, but its ./config.guess is: i686-pc-linux-gnu Hope that helps, thanks! Dev _______________________________________________ Discuss-gnuradio mailing list [email protected] http://lists.gnu.org/mailman/listinfo/discuss-gnuradio
