The command line tools allows you to generate keys, and send transaction.
sudo apt-get update
sudo apt-get install autoconf cmake make automake libtool git libboost-all-dev libssl-dev g++ libcurl4-openssl-dev
git clone https://github.com/quantadex/quanta-core.git
cd quanta-core
git checkout release # may substitute "master" with current release tag
git submodule update --init --recursive
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo .
make
curl -L -o /usr/local/bin/quanta-wallet https://github.com/quantadex/quanta-core/releases/download/1.0/cli_wallet.linux.amd64
chmod +x /usr/local/bin/quanta-wallet
curl -L -o /usr/local/bin/quanta-node https://github.com/quantadex/quanta-core/releases/download/1.0/witness_node.linux.amd64
chmod +x /usr/local/bin/quanta-node