Local Install of Helix on macOS
Requirements
Docker
- Install Docker Desktop by visiting the installer page and if this is your first time installing Docker Desktop, you may want to restart your computer after installation. Otherwise, Helix may not be able to find it in the later steps below.
Ollama
- Install Ollama by visiting the installer page
- Download Ollama Model (note - from here you need to open the terminal)
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 ~/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
- Bottom left pane - click on “Login/Register”
- To access the app, log in to the local HelixML UI with your registered user credentials
Last updated on