2020-12-02 15:30:58 -05:00
|
|
|
|
|
|
|
# installation instructions for the short-attention-span user like me
|
|
|
|
|
2021-04-30 21:28:22 -04:00
|
|
|
# First off the easiest way is to use the official pypi release.
|
|
|
|
# To use the official release:
|
|
|
|
pip install aprsd
|
2020-12-02 15:30:58 -05:00
|
|
|
|
2021-04-30 21:28:22 -04:00
|
|
|
# For developers, there are a few ways:
|
|
|
|
# The EASY way? Use the makefile:
|
|
|
|
git clone https://github.com/craigerl/aprsd.git
|
|
|
|
cd aprsd
|
|
|
|
make dev
|
|
|
|
source .venv/bin/activate
|
2020-12-02 15:30:58 -05:00
|
|
|
|
2021-04-30 21:28:22 -04:00
|
|
|
|
|
|
|
# The HARD way?
|
|
|
|
cd ~
|
|
|
|
sudo apt get install virtualenv
|
|
|
|
virtualenv ~/.venv_aprsd
|
|
|
|
source ~/.venv_aprsd/bin/activate
|
2020-12-06 12:07:07 -05:00
|
|
|
mkdir ~/aprsd2
|
|
|
|
cd ~/aprsd2
|
2020-12-02 15:30:58 -05:00
|
|
|
git clone https://github.com/craigerl/aprsd.git
|
|
|
|
cd aprsd
|
2020-12-09 11:05:08 -05:00
|
|
|
pip install -e .
|
2020-12-02 15:30:58 -05:00
|
|
|
|
2021-04-30 21:28:22 -04:00
|
|
|
|
|
|
|
# CONFIGURE
|
|
|
|
# Now configure aprsd HERE
|
2023-10-22 20:14:59 -04:00
|
|
|
mkdir -p ~/.config/aprsd
|
|
|
|
./aprsd sample-config > ~/.config/aprsd/aprsd.conf # generates a config template
|
2020-12-02 15:30:58 -05:00
|
|
|
|
2023-10-22 20:14:59 -04:00
|
|
|
vi ~/.config/aprsd/aprsd.conf # copy/edit config here
|
2020-12-05 15:55:15 -05:00
|
|
|
|
2021-04-30 21:28:22 -04:00
|
|
|
aprsd server
|
2020-12-05 15:55:15 -05:00
|
|
|
|
|
|
|
# profit! #
|