2017-08-24 09:28:14 -04:00
|
|
|
#! /bin/bash
|
2018-10-19 10:18:32 -04:00
|
|
|
# This script will install dmr_utils from a downloaded zip file or from a git clone.
|
|
|
|
# If all you are interested in using dmr_utils because another program requires it (HBlink DMRlink etc)
|
|
|
|
# Then you can simply:
|
|
|
|
# apt-get install python-pip -y
|
|
|
|
# pip install dmr_utils
|
2017-08-24 09:28:14 -04:00
|
|
|
|
2017-12-07 13:35:54 -05:00
|
|
|
# Install the required support programs
|
2018-10-19 10:18:32 -04:00
|
|
|
# apt-get install unzip -y
|
|
|
|
# apt-get install python-dev -y
|
2019-01-02 14:00:45 -05:00
|
|
|
# apt-get install python-pip -y
|
2017-12-07 13:35:54 -05:00
|
|
|
|
2019-01-02 14:00:45 -05:00
|
|
|
apt-get install python-pip -y
|
|
|
|
pip install dmr_utils
|
2017-08-24 09:28:14 -04:00
|
|
|
|