mirror of
https://github.com/craigerl/aprsd.git
synced 2024-11-08 17:46:09 -05:00
Hemna
9de0df31eb
This patch added some changes to the INSTALL.txt file to fix a user issue: https://github.com/craigerl/aprsd/issues/58 Added documentation to the INSTALL.txt to use the makefile. It's far easier and superior in every way to setup and install than the manual instructions. Use pypi for the official package.
37 lines
753 B
Plaintext
37 lines
753 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
|
|
./aprsd sample-config # generates a config.yml template
|
|
|
|
vi ~/.config/aprsd/config.yml # copy/edit config here
|
|
|
|
aprsd server
|
|
|
|
# profit! #
|