Quickstart
Install Guide
This guide is written in a simple, beginner-friendly style for people who just want to get NeuraMind running locally.
1. Install Python
- Open the official Python website in your browser.
- Download the current Python 3 installer for your operating system.
- Run the installer.
- Important on Windows: check the box Add Python to PATH before clicking install.
- Finish the installation.
After that, open Terminal or Command Prompt and run:
python --version
If that does not work, try:
python3 --version
2. Install Ollama
- Open the official Ollama website.
- Download the installer for Windows, macOS, or Linux.
- Run the installer and finish setup.
- Open Terminal or Command Prompt and run:
ollama --version
3. Download a model in Ollama
Example:
ollama pull llama3.1
Then test it:
ollama run llama3.1
4. Download NeuraMind
- Download the NeuraMind files.
- Extract the ZIP file into a folder you can easily find again.
- Open Terminal or Command Prompt in that folder.
5. Install NeuraMind dependencies
Run one of these commands depending on your system:
pip install -r requirements.txt
or
python -m pip install -r requirements.txt
6. Start the app
Typical command:
python autopatch_studio.py
If needed, try:
python3 autopatch_studio.py
7. If something does not work
- If
pythonis not found, reinstall Python and make sure it is added to PATH. - If
ollamais not found, reinstall Ollama and restart the terminal. - If a module is missing, run the requirements command again.
- If the app does not start, check the terminal output for the first error message.
8. Recommended next step
Once NeuraMind starts successfully, open the VibeCoding area or the repair workflow and test it on a small project first.