Skip to main content

Wildfire Hackathon Review

Installation

The app should be run from a Unix environment, so open WSL if on Windows.

  1. Which python version are you running: python --version
  2. Ensure venv is installed: sudo apt install python3.10-venv
  3. 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
  4. Clone the repo: git clone git@github.com:gqc/wildfire-app.git
  5. Create a virtualenv: python -m venv venv
  6. Setup the Wave environment: make setup