Skip to main content

Installation

Install on local machine

  1. Install Docker and uv.
  2. Download the app code (needs to be done once):
git clone https://github.com/tangleml/tangle.git tangle/backend --branch stable
git clone https://github.com/tangleml/tangle-ui.git tangle/frontend_build --branch gh_pages_stable --single-branch --depth 1
  1. Start the app:

    • Linux and macOS:

      cd tangle && backend/start_local.sh
    • Windows:

      cd tangle && backend\start_local.cmd
  2. Once the start_local: Starting the orchestrator message appears in your terminal, open localhost:8000 in your browser.

  3. Click the New Pipeline button to start building your first pipeline!

Install in Google Cloud Shell (free)

Google Cloud Shell is free (50 hours per week) and needs a Google Cloud account.

  1. Open Google Cloud Shell in a Web browser

  2. Download the app code (needs to be done once):

    git clone https://github.com/tangleml/tangle.git tangle/backend --branch stable
    git clone https://github.com/tangleml/tangle-ui.git tangle/frontend_build --branch gh_pages_stable --single-branch --depth 1
  3. Start the app:

    cd tangle && backend/start_local.sh
  4. Once the start_local: Starting the orchestrator and View app at messages appear in your terminal, open the shell.cloud.google.com/devshell/proxy?port=8000 URL in another browser tab.

  5. Click the New Pipeline button to start building your first pipeline!