Marcus Leech wrote:

> I pulled the latest from the trunk last night, and it built and
> installed without complain.
> 
> I set PYTHONPATH to /usr/local/lib64/python-2.4/site-packages and export
> the path.
> 
> When I try to run my application, which does a
> 
> from gnuradio import gr, gru
> 
> I get a "no module named gnuradio found"
> 
> I checked to make sure that /usr/local/lib64/python-2.4/site-packages
> had the appropriate gnuradio "stuff" after the
>  install.

Can you try the following:

$ python
Python 2.4.4c1 (#2, Oct 11 2006, 21:51:02)
[GCC 4.1.2 20060928 (prerelease) (Ubuntu 4.1.1-13ubuntu5)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> sys.path
['', '/usr/lib/python24.zip', '/usr/lib/python2.4',
'/usr/lib/python2.4/plat-linux2', '/usr/lib/python2.4/lib-dynload',
'/usr/local/lib/python2.4/site-packages',
'/usr/lib/python2.4/site-packages', '/var/lib/python-support/python2.4',
'/usr/lib/site-python'
...
...
]
>>>

In particular, there should be a

/usr/local/lib64/python-2.4/site-packages

in the output for your machine.

-- 
Johnathan Corgan
Corgan Enterprises LLC
http://corganenterprises.com


_______________________________________________
Discuss-gnuradio mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/discuss-gnuradio

Reply via email to