Let's get biopb running.
Answer a question or two below and you'll get the exact steps for your machine. For most people it's a single copy-paste β with a little extra setup on Windows.
First things first β what kind of computer are you on?
You're one command away. π
-
Install biopb
Open your Terminal β on Mac, press
β + Space, type βTerminalβ, and hit Enter; on Linux you already know where it lives π β then paste this in and press Enter:$ curl -fsSL https://biopb.org/install.sh | bashLet it run. It downloads biopb, sets up its data server, and installs a friendly AI agent (OpenCode). Partway through it'll pause to help you set up a free OpenCode Zen account β just follow the prompt (no credit card, free models included) and paste the key back when it asks. After that you're wired up.
Never pasted a command like this before? Totally normal.curl β¦ | bashjust means βdownload our little setup script and run it.β Want to read exactly what it does first? It's plain text at biopb.org/install.sh. -
Open your agent and ask β¨
That's it β no server to start. Open your AI agent β Claude Code, OpenCode, or Cursor β and just ask it to open an image or run an analysis. Your agent launches biopb on its own whenever it needs it. That's the whole workflow.
Windows: two solid routes. Pick your vibe. πͺ
Either way you'll install one thing yourself first β that's just how Windows rolls. Choose the one that fits you:
The WSL route π§πͺ
WSL (Windows Subsystem for Linux) lets Windows run a genuine Linux inside itself. Set it up once, and biopb installs exactly like it does on Mac and Linux.
-
Turn on WSL
Click Start, type βPowerShellβ, then choose Run as administrator. In the blue window, paste:
> wsl --installRestart your PC when it asks you to.
-
Set up Ubuntu
After the restart, an Ubuntu window opens and asks you to pick a username and password. Choose anything you like β just remember them. (This is your new Linux account; the password won't show as you type, that's normal.)
-
Grab the basics
A fresh Ubuntu doesn't ship with
curl, so install it first (it'll ask for the password you just created β the typing stays hidden):$ sudo apt update && sudo apt install -y curl -
Install biopb
In that same Ubuntu window, paste the one-liner everyone else uses:
$ curl -fsSL https://biopb.org/install.sh | bashPartway through, it'll pause to help you set up a free OpenCode Zen account β just follow the prompt (no credit card, free models included) and paste the key back when it asks.
-
Open your agent and ask β¨
No server to start β open your AI agent and ask it to load an image or run an analysis. Your agent launches biopb on its own whenever it needs it.
The native route π»
Prefer to stay on plain Windows? You'll talk to biopb through a supported AI agent, and a one-line installer wires biopb straight into it for you.
Quick check β do you already use one of these agents?
OpenCode, Claude Code, Cursor, or Hermes
-
Run the installer
Open PowerShell (the normal one β no administrator needed), then paste:
> powershell -c "irm https://biopb.org/install.ps1 | iex"It finds your agent β OpenCode, Claude Code, Cursor, or Hermes β and connects biopb to it automatically. Nothing to configure by hand.
-
Open your agent and ask β¨
No server to start β open your agent and ask it to load an image or run an analysis. Your agent launches biopb on its own whenever it needs it.
-
Install the OpenCode desktop app
Download OpenCode for Windows from opencode.ai/download and run the Windows installer (next-next-finish). This is the free chat app you'll talk to biopb through.
On first launch it'll ask you to connect an AI model. Choose OpenCode Zen and create a free account β no credit card needed, and it comes with a few free models to get you started. (Already have an Anthropic or OpenAI key? You can paste that in instead.) -
Run the installer
Open PowerShell (the normal one β no administrator needed), then paste:
> powershell -c "irm https://biopb.org/install.ps1 | iex"It finds your OpenCode app and connects biopb to it automatically β nothing to configure by hand.
-
Open OpenCode and ask β¨
No server to start β open OpenCode and ask it to load an image or run an analysis. OpenCode launches biopb on its own whenever it needs it.
irm β¦ | iex is just
PowerShell for βdownload our setup script and run it.β You can read it first at
biopb.org/install.ps1.
Still stuck? We've got you. π€
Hit a snag or an error you don't recognize? Open an issue on GitHub (paste the message you saw), or ask the friendly bioimaging crowd on the image.sc forum. No question is too basic.