Local Install of Helix on Windows (WSL2)
Requirements
Created on Windows (WSL2)
- Following instructions assume that you have WSL installed
- Open PowerShell or Windows Command Prompt in administrator mode by right-clicking and selecting Run as administrator
wsl --install
Install Docker Desktop Install Docker
Install Ollama Install Ollama
Download Ollama Model
ollama pull llama3:instruct
Confirm that the model exists - values proceeding name of the model may differ ollama ls | grep “llama3:instruct”
You should get a confirmation similar to this:
llama3:instruct 365c0bd3c000 4.7 GB 43 hours ago
Install Helix Windows (WSL2)
This will set up the CLI, the controlplane talking to ollama locally
curl -sL -O https://get.helix.ml/install.sh
chmod +x install.sh
./install.sh --openai-api-key ollama --openai-base-url http://host.docker.internal:11434/v1
Successful completion of the installation
Spin up Helix Docker Instances
- Start Helix Services
cd /opt/HelixML
sudo docker compose up -d --remove-orphans
Login to Helix UI
- In a web browser go to: http://localhost:8080/
- Register local user
- Bottom left pane - click on “Login/Register”
- Click on “Register” to begin the user registeration process
- Complete user registration
- To access the app, log in to the local HelixML UI with your registered user credentials
Last updated on