Software Install (Version 2)
This page is the checklist for the Nova App Launcher (GUI), which runs Nova in one neat window. Under the hood it starts the same two scripts: nova_cli.py (voice + AI) and face_tracking.py (camera + tracking).
- create the Nova folder
- install Python
- install the libraries
- install Ollama
- install Piper (TTS)
- then run Nova (App Launcher)
Before you start: create your Nova folder
Put everything inside one folder in your Documents, like: C:\Users\YourName\Documents\Nova Desktop\
You can create this folder either in Windows (right-click → New folder) or using Command Prompt:
1) Install Python
Install Python 3.10 (64-bit) (recommended for best compatibility).
- During install, tick: Add Python to PATH
Verify in Command Prompt:
If python doesn’t work, try py instead:
2) Install required libraries
These cover Nova CLI (speech + LLM + audio) and face tracking (camera + tracking + UDP).
Core (Nova CLI)
Face tracking (camera + tracking)
Common extras
3) Install / run Ollama
Install Ollama for Windows and confirm it runs.
Requires Windows 10 or later.
Nova Modelfile (required for “Nova” behaviour + animations)
Nova uses a custom Modelfile so Ollama responds in Nova’s format (including animation/emotion tags). You’ll find the Modelfile in your download pack.
Copy the file named Modelfile into your Windows home folder (your user directory): C:\Users\YourName\Modelfile (same as %USERPROFILE%\Modelfile).
Then create the Nova model from that file:
4) Install Piper (TTS) (Windows)
Piper is Nova’s text-to-speech engine. nova_cli.py expects Piper in these exact locations by default:
- Piper executable: C:\piper\piper.exe
- Voice models folder: C:\piper\models\
This means you don’t need to add Piper to PATH — the script calls it by full path.
A) Create the Piper folders (Command Prompt)
B) Download Piper (zip) + extract to C:\piper\
Download the Windows release zip from the official Piper releases page and extract it into: C:\piper\
After extracting, you should have piper.exe directly inside C:\piper\. If the zip extracts an extra folder layer (common), just move the contents so that piper.exe sits directly in C:\piper\.
C) Test Piper (Command Prompt)
D) Download a voice model (put it in C:\piper\models\)
Piper needs a voice. Download both files for a voice: .onnx and the matching .onnx.json, and put them in: C:\piper\models\
Example: if you choose en_GB-cori-high, you’ll typically download: en_GB-cori-high.onnx and en_GB-cori-high.onnx.json and place both into C:\piper\models\.
E) Generate a test WAV
Replace the voice filename with the one you downloaded:
F) Confirm nova_cli.py matches your chosen voice
In nova_cli.py, the Piper command looks like this. Make sure the --model path matches the voice you picked:
If you picked a different voice, just change en_GB-cori-high.onnx to your chosen filename. Also make sure the matching .onnx.json file is in the same folder as the .onnx.
5) Audio setup (mic + speaker)
- Plug in your mic and speakers/headphones.
- In Windows Sound settings, set the correct Input device (mic).
- If Whisper cuts out early, increase mic gain and speak closer to the mic.
- If sounddevice complains about devices, reinstall it and reboot. Audio drivers can be fussy on Windows.
6) USB camera + face tracking setup (Version 2)
- Plug in the USB camera.
- Run Nova and confirm the camera feed appears when face tracking starts.
- If you get a black screen: try another USB port, close other camera apps, and reboot.
Click the big image or any thumbnail to expand (3 screenshots). (Add images here if you want.)
7) Networking / UDP (Nova servo boards)
- Your computer and ESP32 boards must be on the same Wi-Fi network.
- To find your PC IP: open Command Prompt and run:
If you need to change board IPs, update these in nova_cli.py: ARM_IP, TORSO_IP, and ports.
8) Run Nova (App Launcher)
From your Nova folder:
If you stored Nova somewhere else, update the paths inside nova_app_launcher.py / nova_cli.py, especially: ANIM_DIR and any face tracking script path.
Trouble?
- Module not found: run the pip install ... commands again, then retry.
- Camera not detected: try another USB port, close other camera apps, reboot.
- No audio input: check Windows input device + mic permissions.
- Ollama errors: verify Ollama is running and the model name exists.
- Modelfile errors: make sure the file is named exactly Modelfile (no .txt), and run ollama create ... again.
- Piper errors: confirm C:\piper\piper.exe exists and your voice .onnx + .onnx.json are inside C:\piper\models\.