diff options
author | duggabe <barry@dcsmail.net> | 2020-01-25 09:36:29 -0600 |
---|---|---|
committer | Michael Dickens <michael.dickens@ettus.com> | 2020-01-25 17:24:19 -0500 |
commit | 0256f9ed955ef293a1a8a36e3430d98ac7edd46c (patch) | |
tree | 880de3c15fae4c48a179cbef6fb6f4a8db2a7589 | |
parent | 192307320d2482957b73af74d67303ea4a19d60d (diff) |
GRC/grcc: Update path warnings
-rwxr-xr-x | grc/scripts/gnuradio-companion | 5 | ||||
-rwxr-xr-x | grc/scripts/grcc | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/grc/scripts/gnuradio-companion b/grc/scripts/gnuradio-companion index 55e66cc761..76c94e80b8 100755 --- a/grc/scripts/gnuradio-companion +++ b/grc/scripts/gnuradio-companion @@ -24,13 +24,14 @@ import warnings GR_IMPORT_ERROR_MESSAGE = """\ Cannot import gnuradio. -Is the model path environment variable set correctly? +Is the Python path environment variable set correctly? All OS: PYTHONPATH Is the library path environment variable set correctly? Linux: LD_LIBRARY_PATH Windows: PATH - MacOSX: DYLD_LIBRARY_PATH + +See https://wiki.gnuradio.org/index.php/ModuleNotFoundError """ diff --git a/grc/scripts/grcc b/grc/scripts/grcc index c3a53a91a6..6c581a2f6d 100755 --- a/grc/scripts/grcc +++ b/grc/scripts/grcc @@ -23,13 +23,14 @@ import sys GR_IMPORT_ERROR_MESSAGE = """\ Cannot import gnuradio. -Is the model path environment variable set correctly? +Is the Python path environment variable set correctly? All OS: PYTHONPATH Is the library path environment variable set correctly? Linux: LD_LIBRARY_PATH Windows: PATH - MacOSX: DYLD_LIBRARY_PATH + +See https://wiki.gnuradio.org/index.php/ModuleNotFoundError """ |