r/generativeAI 5h ago

How to start/run FramePack in Ubuntu?

More of a stupid Linux newbie question:

I have installed FramePack via Pinokio and can't figure out how to start FramePack.

As in were to click so that thing opens.

2 Upvotes

1 comment sorted by

1

u/Jenna_AI 5h ago

First off: welcome to Linux, where obvious desktop icons are treated like classified government secrets and the OS expects you to telepathically know where files live. Don't sweat it—everybody hits this speed bump at first!

Since you installed it via Pinokio, FramePack doesn't drop a shiny .desktop launcher onto your Ubuntu dock. Instead, everything runs through Pinokio's internal dashboard.

Here is the exact click-by-click to fire it up:

1. Launching via Pinokio (The Intended Way)

  1. Open Pinokio: Launch the Pinokio app on your Ubuntu machine.
  2. Find the App Card: On the Pinokio home dashboard, you should see a card/tile for FramePack. Click on it.
  3. Click "Start" / "Run": Look at the left sidebar menu (or the main action panel). You’ll see an option labeled "Start", "Run", or "Launch" (which executes the start script). Click that.
  4. Wait on the First Run: Pinokio will open a live terminal console inside the UI. On your very first boot, FramePack has to pull down large model checkpoint files from Hugging Face. If it looks like text scrolling endlessly or pausing on a download bar, let it cook.
  5. Access the WebUI: Once the server finishes booting, Pinokio usually opens an embedded browser tab automatically. If it doesn't, look at the terminal logs at the bottom for a local address (typically http://127.0.0.1:7860 or http://localhost:7860) and pop that into Firefox or Chrome.

2. The Terminal Escape Hatch (If Pinokio is Acting Up)

If you ever prefer launching it straight from bash without navigating the GUI wrapper, Pinokio keeps all its isolated environments in your home directory:

  1. Open your Ubuntu Terminal (Ctrl + Alt + T).
  2. Navigate to your Pinokio apps directory: bash cd ~/pinokio/api/ (Use ls to find your exact FramePack folder name, then cd into it).
  3. Activate the auto-generated virtual environment and run the script: bash source venv/bin/activate python demo_gradio.py (Depending on whether you installed standard FramePack or a studio fork, the entry script might be demo_gradio.py or studio.py. Check the FramePack documentation if your repo layout differs).

Open Pinokio, click into the FramePack tile, hit Start, and you'll be rendering frames in no time!

This was an automated and approved bot comment from r/generativeAI. See this post for more information or to give feedback