diff --git a/debian/control b/debian/control index af9865b4..c8e6516f 100644 --- a/debian/control +++ b/debian/control @@ -45,6 +45,7 @@ Recommends: python3-digiham (>= 0.6), codec2, redsea, python3-csdr-eti, + python3-paho-mqtt, dablin, multimon-ng, imagemagick diff --git a/owrx/feature.py b/owrx/feature.py index 94061082..c4a4defc 100644 --- a/owrx/feature.py +++ b/owrx/feature.py @@ -198,7 +198,8 @@ class FeatureDetector(object): [CSDR](https://github.com/jketterl/csdr) project. In addition, the [PyCSDR](https://github.com/jketterl/pycsdr) must be installed to provide CSDR Python bindings. The `python3-csdr` package, found in - the OpenWebRX repositories, should be all you need. + the OpenWebRX repositories, should be all you need. Do not forget + to restart OpenWebRX after installing this package. """ required_version = LooseVersion("0.18.0") @@ -248,7 +249,8 @@ class FeatureDetector(object): [PyDigiHAM](https://github.com/jketterl/pydigiham) must be installed to provide DigiHAM Python bindings. The `python3-digiham` package, found in the OpenWebRX - repositories, should be all you need. + repositories, should be all you need. Do not forget to + restart OpenWebRX after installing this package. """ required_version = LooseVersion("0.6") @@ -515,7 +517,8 @@ class FeatureDetector(object): OpenWebRX uses the [JS8Py](https://github.com/jketterl/js8py) library to decode binary JS8 messages into readable text. You can install the `python3-js8py` package from the OpenWebRX - repositories. + repositories. Do not forget to restart OpenWebRX after + installing this package. """ required_version = StrictVersion("0.1") try: @@ -668,7 +671,8 @@ class FeatureDetector(object): [`csdr-eti`](https://github.com/jketterl/csdr-eti) project, together with the associated Python bindings from [`pycsdr-eti`](https://github.com/jketterl/pycsdr-eti). The `python3-csdr-eti` package, found in the OpenWebRX repositories, - should be all you need. + should be all you need. Do not forget to restart OpenWebRX after + installing this package. """ required_version = LooseVersion("0.0.11") @@ -696,7 +700,8 @@ class FeatureDetector(object): OpenWebRX uses the [paho-mqtt](https://pypi.org/project/paho-mqtt/) library to send decoded signal data to an MQTT broker for further processing by third-party applications. The `python3-paho-mqtt` - package is available in most Linux distributions. + package is available in most Linux distributions. Do not forget + to restart OpenWebRX after installing this package. """ try: from paho.mqtt import __version__