mirror of
https://github.com/craigerl/aprsd.git
synced 2024-10-31 15:07:13 -04:00
5828643f2e
The name of the config files has changed, update INSTALL with the new names.
38 lines
801 B
Plaintext
38 lines
801 B
Plaintext
|
|
# installation instructions for the short-attention-span user like me
|
|
|
|
# First off the easiest way is to use the official pypi release.
|
|
# To use the official release:
|
|
pip install aprsd
|
|
|
|
# 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
|
|
|
|
|
|
# The HARD way?
|
|
cd ~
|
|
sudo apt get install virtualenv
|
|
virtualenv ~/.venv_aprsd
|
|
source ~/.venv_aprsd/bin/activate
|
|
mkdir ~/aprsd2
|
|
cd ~/aprsd2
|
|
git clone https://github.com/craigerl/aprsd.git
|
|
cd aprsd
|
|
pip install -e .
|
|
|
|
|
|
# CONFIGURE
|
|
# Now configure aprsd HERE
|
|
mkdir -p ~/.config/aprsd
|
|
./aprsd sample-config > ~/.config/aprsd/aprsd.conf # generates a config template
|
|
|
|
vi ~/.config/aprsd/aprsd.conf # copy/edit config here
|
|
|
|
aprsd server
|
|
|
|
# profit! #
|