From 9f85ecbe0d2468d3ddb0a2f83c1bc98deee79705 Mon Sep 17 00:00:00 2001 From: server Date: Fri, 21 Feb 2020 17:12:50 -0700 Subject: [PATCH] Debian install notes --- README.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/README.md b/README.md index 6a4ee71..82d0b15 100644 --- a/README.md +++ b/README.md @@ -16,3 +16,29 @@ Be certain to read the User Guide!!! Learn more at kstaats.github.io/karoo_gp/ ... + +# Debian Install + +To install on Debian (Buster, Stable, 10): + +``` +# Install Dependencies: +sudo apt install python3 python3-pip python3-venv + +# Clone repo (choose this one or upstream): +# git clone https://github.com/kstaats/karoo_gp +git clone https://spacecruft.org/spacecruft/karoo_gp + +# Setup +cd karoo_gp +python3 -m venv .venv +source .venv/bin/activate + +# Install python dependencies +pip3 install wheel +pip3 install numpy==1.16.4 sympy==1.4 tensorflow==1.13.1 scikit-learn==0.21.2 + +# Run application +python3 karoo_gp.py +``` +