Tensorflow 2.1 install

tf2
server 2020-02-21 18:58:21 -07:00
parent c34ee104db
commit fbb3e36899
1 changed files with 28 additions and 1 deletions

View File

@ -19,7 +19,7 @@ Learn more at <a href="http://kstaats.github.io/karoo_gp/">kstaats.github.io/kar
# Debian Install
To install on Debian (Buster, Stable, 10):
To install on Debian (Buster/Stable/10):
```
# Install Dependencies:
@ -42,3 +42,30 @@ pip3 install numpy==1.16.4 sympy==1.4 tensorflow==1.13.1 scikit-learn==0.21.2
python3 karoo_gp.py
```
# Tensorflow 2 Install
Using karoo_gp with Tensorflow 2 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
pip3 install --upgrade pip
pip3 install --upgrade setuptools
# Install python dependencies
pip3 install wheel
# This will install Tensorflow 2.1:
pip3 install tensorflow
# Run application
python3 karoo_gp.py
```