-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
plsdr will not start #4
Comments
Python can do a lot of pretty neat things, but it won't mislead you. If Python says gnuradio is not installed then ... gnuradio is not installed. Perform this test. Open a command shell and type "python". Now you will see this:
Now type "import gnuradio". If gnuradio is accessible to Python, you won't see an error message. If gnuradio is not accessible to Python, you will see an error message, and the message has no connection to my program. Also, PLSDR requires Python 2.x, but only because gnuradio requires Python 2.x (I would have used Python 3 if I could have). This might have a bearing on the error you're seeing. I hope this helps. |
lutusp; I would like to revisit this problem. I use gentoo which allows the installation of several version of python i.e. I have four versions: gene@go:/usr/src/PLSDR# eselect python list So I changed all occurances of #!/usr/bin/env python to #!/usr/bin/env python2.7 because all python2.7 stuff is installed like this: /usr/lib64/python2.7/site-packages/osmosdr. After doing this gnuradio module was found but: gene@go:/usr/src/PLSDR# ./PLSDR.py All of requirements are installed. Do you have any ideas how I can get this to run? Thanks |
This is the result of an command line start:
gnuradio is installed. I need more clues.
Thanks for help
The text was updated successfully, but these errors were encountered: