Install Fermi Console
Native desktop app for probabilistic forecasting with AI agents. Three steps, about two minutes.
-
Open Terminal
On Ubuntu / Debian / Pop!_OS: press
Ctrl + Alt + T. On other distros, launch your usual terminal app. On macOS: press⌘ + Space, typeTerminal, hit Enter. -
Paste this command and press Enter
The same command works on Linux and macOS — it detects your OS and CPU, downloads the matching build, and puts
fermi-consolein~/.local/bin. On Linux it also installs a few system graphics libraries first.$ curl -fsSL https://__HOST__/fermi-console/install.sh | bashWhat this does: reads a small script from this site (you can preview it here) and downloads the binary from GitHub Releases.
On Linux it first runsapt-get installfor a few graphics libraries (Vulkan, XCB, fontconfig), so it asks for your sudo password once.
On macOS there is noapt-getstep and no sudo prompt — Metal and the system frameworks already ship with the OS, so it only downloads the binary into~/.local/bin.What if I don't want to pipe curl into bash?
Fair. Save it first, read it, then run it:$ curl -fsSL https://__HOST__/fermi-console/install.sh -o install.sh && less install.sh && bash install.shmacOS: I'd rather have a Dock icon
Grab theFermi Console.appzip for your chip —…-macos-aarch64.zipfor Apple Silicon,…-macos-x86_64.zipfor Intel — from the latest GitHub release, unzip it, and drag the app into/Applications.
The app is ad-hoc code-signed but not Apple-notarized, so the very first launch needs right-click → Open (then Open again in the dialog). If macOS blocks it anyway, go to System Settings → Privacy & Security and click Open Anyway. Subsequent launches are normal double-clicks. -
Launch it
In the same terminal, type:
$ fermi-consoleA window will appear. Sign in on the Dashboard with Google or GitHub, and you're done. Future updates are handled in-app under Help → Check for Updates.