This guide walks you through everything needed to run BigEd CC for the first time. No programming experience required. If you already have Python and Ollama installed, see README.md instead.
Estimated time: 10--15 minutes.
BigEd CC needs two things to run, plus itself:
- Python 3.11+ -- the programming language BigEd CC is written in. You will not need to write any code. Python just needs to be installed so the application can run.
- Ollama -- a program that runs AI models on your computer. BigEd CC sends work to these models through Ollama.
- BigEd CC -- the application itself. It includes a launcher window, a fleet of AI workers, and a dashboard to monitor them.
Setup scripts are included in the repository and handle Python verification, Ollama installation, model downloads, and dependency installation for you.
Windows:
- Right-click the Start button. Click Terminal (or PowerShell).
- Type this command and press Enter:
powershell -ExecutionPolicy Bypass -File scripts\setup.ps1 - Follow the prompts on screen.
Linux / macOS:
- Open a terminal. On Linux, press Ctrl+Alt+T. On macOS, open Spotlight (Cmd+Space), type "Terminal", and press Enter.
- Type this command and press Enter:
bash scripts/setup.sh - Follow the prompts on screen.
Pick the section that matches your computer.
- Go to python.org/downloads.
- Click the big yellow button that says Download Python 3.12 (or any version 3.11 or newer).
- Open the downloaded file to start the installer.
- Important: At the bottom of the first installer screen, check the box that says Add Python to PATH. If you skip this, commands will not work later.
- Click Install Now. Wait for it to finish.
- To verify it worked:
- Right-click the Start button. Click Terminal (or Command Prompt).
- Type
python --versionand press Enter. - You should see something like
Python 3.12.x. If you see an error, go back and reinstall with the PATH checkbox checked.
- Go to ollama.com/download.
- Click Download for Windows.
- Open the downloaded file and follow the installer.
- To verify it worked:
- Open Terminal (or Command Prompt).
- Type
ollama --versionand press Enter. - You should see a version number.
Ollama needs a model to run. BigEd CC uses one called qwen3:8b by default.
- Open Terminal (or Command Prompt).
- Type
ollama pull qwen3:8band press Enter. - Wait for the download to finish. It is about 5 GB, so it may take a few minutes depending on your internet speed.
If your computer has less than 16 GB of RAM, use a smaller model instead:
ollama pull qwen3:4b
Option A -- Download the installer (easiest):
- Go to the BigEd CC releases page.
- Download the latest
.exefile. - Run it and follow the installer.
Option B -- Download the source code:
If you want to run from source or contribute:
- Go to github.com/mbachaud/BigEd.
- Click the green Code button, then click Download ZIP (or use
git clone https://github.com/mbachaud/BigEd.gitif you have Git). - Extract the ZIP file to a folder you will remember (for example, your Desktop or Documents folder).
- Open Terminal. Type the following commands one at a time, pressing Enter
after each:
Replace
cd path\to\BigEd pip install -r BigEd/launcher/requirements.txt pip install -r fleet/requirements.txtpath\to\BigEdwith the actual path to the folder you extracted. For example:cd C:\Users\YourName\Desktop\BigEd - The
pip installcommands download the libraries BigEd CC needs. Wait for them to finish.
- If you used the installer: Double-click the BigEd CC shortcut or
.exefile. Updates are handled automatically by the built-in Updater. - If you downloaded the source code: Open Terminal, go to the folder, and
type:
python BigEd/launcher/launcher.py
A window will appear. Follow the on-screen walkthrough.
Python is usually already installed on Linux. Check first:
- Open a terminal. Press Ctrl+Alt+T.
- Type
python3 --versionand press Enter. - If you see
Python 3.11or newer, skip to Step 2. - If Python is not installed or is too old, type these commands:
When asked for your password, type it and press Enter. The password will not appear on screen as you type -- that is normal.
sudo apt update sudo apt install python3 python3-pip python3-tk
- In the terminal, type this command and press Enter:
curl -fsSL https://ollama.com/install.sh | sh - To verify it worked, type
ollama --versionand press Enter.
- In the terminal, type:
ollama pull qwen3:8b - Wait for the download to finish (about 5 GB).
If your computer has less than 16 GB of RAM, use ollama pull qwen3:4b instead.
Option A -- AppImage (easiest):
- Go to the BigEd CC releases page.
- Download the
.AppImagefile. - In the terminal, make it runnable:
chmod +x BigEdCC.AppImage - Double-click the file, or run it from the terminal:
./BigEdCC.AppImage
Option B -- Run from source:
- In the terminal, type these commands one at a time:
git clone https://github.com/mbachaud/BigEd.git cd BigEd pip3 install -r BigEd/launcher/requirements.txt pip3 install -r fleet/requirements.txt python3 BigEd/launcher/launcher.py - If
gitis not installed, install it first:sudo apt install git
Follow the same steps as Ubuntu above, with these differences:
- Desktop Mode is required. Hold the Power button on your Steam Deck and choose Desktop Mode.
- Use
pacmaninstead ofaptfor installing packages:sudo pacman -S python python-pip tk git - Ollama installs the same way:
curl -fsSL https://ollama.com/install.sh | sh - Everything else (downloading a model, cloning the repo, running the app) is the same as the Ubuntu instructions above.
macOS does not include a recent version of Python. The easiest way to install it is through Homebrew, a package manager for macOS.
- Open Spotlight (press Cmd+Space), type Terminal, and press Enter.
- Install Homebrew by typing this command and pressing Enter:
Follow any prompts that appear. This may take a few minutes.
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" - Install Python:
brew install python@3.12 python-tk@3.12 - Verify: type
python3 --versionand press Enter. You should see 3.12 or newer.
- Go to ollama.com/download and click Download for macOS. Open the downloaded file and drag it to your Applications folder.
- Or install from the terminal:
brew install ollama - Verify: type
ollama --versionand press Enter.
- In the terminal, type:
ollama pull qwen3:8b - Wait for the download to finish (about 5 GB).
If your Mac has 8 GB of RAM, use ollama pull qwen3:4b instead.
Option A -- DMG installer (easiest):
- Go to the BigEd CC releases page.
- Download the
.dmgfile. - Open it and drag BigEd CC to your Applications folder.
Option B -- Run from source:
- In the terminal, type these commands one at a time:
git clone https://github.com/mbachaud/BigEd.git cd BigEd pip3 install -r BigEd/launcher/requirements.txt pip3 install -r fleet/requirements.txt python3 BigEd/launcher/launcher.py
If something goes wrong, find your problem below and try the fix.
Python was not added to your system PATH during installation.
- Windows: Uninstall Python, then reinstall it. This time, check the Add Python to PATH box on the first screen of the installer.
- Linux: Use
python3instead ofpython. They are different commands on Linux. - macOS: Use
python3instead ofpython.
Tkinter is the library that draws the launcher window. It is included with Python on Windows and macOS, but Linux sometimes needs it installed separately.
- Ubuntu / Mint / Debian:
sudo apt install python3-tk - Arch / SteamOS:
sudo pacman -S tk
You need to install the project dependencies. Open a terminal, go to the BigEd CC folder, and run:
pip install -r BigEd/launcher/requirements.txt
On Linux or macOS, use pip3 instead of pip.
Ollama is not running. It needs to be running in the background for BigEd CC to work.
- Windows: Look for the Ollama icon in the system tray (bottom-right corner of the screen, near the clock). If it is not there, open Ollama from the Start menu.
- Linux: Open a terminal and type
ollama serve. Leave that terminal window open. - macOS: Open Ollama from the Applications folder.
The AI model has not been downloaded yet. Open a terminal and type:
ollama pull qwen3:8b
Wait for it to finish before trying again.
- Make sure Ollama is running (see "Ollama connection refused" above).
- Make sure you downloaded a model (see "Model not found" above).
- Close BigEd CC and open it again.
You must be in Desktop Mode to install software. Hold the Power button on your Steam Deck and choose Desktop Mode.
When you open BigEd CC for the first time:
- It checks that Ollama is installed and running.
- It checks that you have downloaded an AI model.
- A walkthrough guides you through initial setup in a few steps.
- The fleet (the group of AI workers) boots automatically.
- You will see agents come online in the status panel on the left side of the window.
After the first launch, BigEd CC will skip the walkthrough and go straight to the main screen.
BigEd CC includes a built-in Updater that supports two update methods. It automatically detects which one to use based on how you installed the application.
Installer users (release mode): If you installed BigEd CC using
Setup.exe from the releases page, the Updater downloads new versions
directly from GitHub Releases. No Git or Python development tools are needed.
Open the Updater from the Start Menu or the installation folder.
Source users (git mode): If you cloned the repository with Git, the
Updater runs git pull followed by an incremental PyInstaller build. It only
rebuilds what changed. Git must be installed and on your PATH.
Both modes use the same Updater window. The subtitle at the top tells you which mode is active ("git pull + incremental build" or "GitHub release download").
BigEd CC runs on most computers, but performance depends on your hardware:
| Setup | What to expect |
|---|---|
| 8 GB RAM, no GPU | Works with qwen3:4b or qwen3:0.6b. Slower responses. Fewer workers. |
| 16 GB RAM, no GPU | Works with qwen3:8b. Reasonable speed on CPU. |
| 32 GB RAM, dedicated GPU (6+ GB VRAM) | Full fleet, fast responses, marathon sessions. |
You do not need a GPU. The AI models can run on your CPU. A GPU just makes things faster.
- README.md -- Overview of features and architecture.
- CONTRIBUTING.md -- How to contribute code or report bugs.
- CROSS_PLATFORM.md -- Platform-specific details and compatibility notes.