Wildfire Hackathon Review
Installation
The app should be run from a Unix environment, so open WSL if on Windows.
- Which python version are you running:
python --version - Ensure venv is installed:
sudo apt install python3.10-venv - In a separate window, install and run Wave:
# Download the SDK:
wget https://github.com/h2oai/wave/releases/download/v0.21.1/wave-0.21.1-linux-amd64.tar.gz
# wget https://github.com/h2oai/wave/releases/download/v1.0.2/wave-1.0.2-linux-amd64.tar.gz
# Extract the archive:
tar -xzf wave-0.21.1-linux-amd64.tar.gz
# tar -xzf wave-1.0.2-linux-amd64.tar.gz
cd wave-0.21.1-linux-amd64
# Start the wave daemon:
./waved - Clone the repo:
git clone git@github.com:gqc/wildfire-app.git - Create a virtualenv:
python -m venv venv - Setup the Wave environment:
make setup