fcloud

fcloud is GPU compute you drive from the terminal. One command uploads your code, provisions a GPU, runs it, and prints the output. You pay for the seconds it runs.

Install fcloud

$ curl -fsSL https://fcloud-home.vercel.app/install.sh | sh

Just paste it in your terminal to get started. It installs the CLI, signs you in through your browser, and sets up your coding agent.

Manual install instructions: docs · Pay per second, no minimums. Scriptable with --json, or from Python with the same package.

What it looks like

$ fcloud run train.py --sku gpu_1x_l4      # upload, provision, run, print
epoch 1/50  loss 2.31
...

$ fcloud create --sku gpu_8x_h100          # persistent session — $0 until used
s-abc123
$ fcloud exec --on s-abc123 nvidia-smi -L
GPU 0: NVIDIA H100 80GB HBM3
...
$ fcloud stop s-abc123                     # spend stops, files stay

The pieces

PieceCommandWhat it does
Sessionfcloud create · --on s-…A persistent /workspace, not a held GPU. Cold and $0 until used; files, env, and packages persist across commands.
SKU--sku gpu_8x_h100The hardware: count × model. Routed to a matching host; `fcloud skus` lists the catalog.
Runfcloud exec · fcloud runRun a command for its output, or upload a script/dir and run it — foreground, exit code and all.
Processesfcloud spawn · wait · logsBackground work you follow by process id. Durable logs outlive the host.
Filesfcloud upload · download · lsPush code and data onto the box; pull results back off — even after the session stops.
Volumefcloud volume · --volumeA named folder mounted into sessions — how data moves between them.
Batchfcloud job · fcloud mapRun-to-completion jobs, and sweeps that fan one command out over N argument bindings.
Lifecyclehot · warm · coldCold sessions cost $0 and come back online the moment you use them; fcloud stop halts spend.
Python SDKproject.session(sku=…)The same sessions, programmatically — for harnesses, pipelines, and agents.

Compute

SKUHardwareGPU memory
cpu_genericCPU only
gpu_1x_l41 × NVIDIA L424 GB
gpu_1x_l40s1 × NVIDIA L40S48 GB
gpu_1x_h1001 × NVIDIA H10080 GB
gpu_8x_h1008 × NVIDIA H100640 GB
gpu_8x_b2008 × NVIDIA B2001.5 TB

A sample — T4, A10G, RTX 6000 Ada, V100, A100, H200, and B300 SKUs are in the full catalog, or run fcloud skus. Rates are dynamic; your live per-second rate is shown when you provision.

Billing

Metered, per second. Add a card, run compute; usage is invoiced weekly and account credit is applied automatically. Cold sessions cost $0 — you're billed only while a host is running. No subscriptions, no minimums, no reserved commitments.

Get a GPU in seconds.

Pay per second. No minimums.

$ curl -fsSL https://fcloud-home.vercel.app/install.sh | sh