lutusp / PLSDR

Software-defined radio application written in Python
GNU General Public License v3.0
156 stars 21 forks source link

The PLSDR it does not open #13

Open bolfa12 opened 4 years ago

bolfa12 commented 4 years ago

when i double click the launch_PLSDR it opens the cmd and it writes: Launching plsdr... Gnu radio located \programfiles\GNU RADIO 3.8 , proceding...

and then it exits What would be the problem? P.S i used python 2.7 and 3.8 and it s the same problem

lutusp commented 4 years ago

Sorry ... After looking into this, I now realize that, even though Gnuradio 3.8 is released and can work with Python 3 on Linux, it doesn't do this on Windows in cooperation with a Python 3 program. This may change in the future.

Linux, no problem.

Again, sorry.

On Wed, May 13, 2020 at 3:41 AM bolfa12 notifications@github.com wrote:

when i double click the launch_PLSDR it opens the cmd and it writes: Launching plsdr... Gnu radio located \programfiles\GNU RADIO 3.8 , proceding...

and then it exits What would be the problem? P.S i used python 2.7 and 3.8 and it s the same problem

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/lutusp/PLSDR/issues/13, or unsubscribe https://github.com/notifications/unsubscribe-auth/ADVTB4PDDH7SQTLWD2BMYUDRRJ2O5ANCNFSM4M7UEOXA .

-- Paul Lutus http://arachnoid.com

whenry123 commented 3 years ago

GnuRadio 3.8 does use Python 3.9 on Windows. The issue is that the directory structure is changed. Python.exe is now located under GNURadio-3.8\tools\python3 instead of the hardcoded path in the script files. Edit the script and do a find/replace of gr-python27 with tools\python3 and it will run.