Local Install of HELIX on MacOS
Requirements
Created on MacOS 15 - YMMV
- Following instructions assume that you have Brew Package Installer installed
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
- Install Docker Desktop Brew Install Docker
brew install docker
NOTE: Make sure that you’re signed on to your Docker account
- Install Ollama Server Brew Install Ollama
brew 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
Run installation script
curl -sL -O https://get.helix.ml/install.sh && bash install.sh
Successful completion of the installation
Spin up Helix Docker Instances
- Change directory to location of HelixML payload is downloaded
cd /Users/"<yourLocalUser>"/HelixML
- Launch Docker Desktop on your computer
- Launch Docker Containers
docker compose up -d --remove-orphans
3. Confirm that all container are running and show a healthy status
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