{
"$type": "site.standard.document",
"bskyPostRef": {
"cid": "bafyreig6uf7goke45vhcgqt7vwnd75kvvkdibfwjbb6uzsajjovrjtxnde",
"uri": "at://did:plc:pgryn3ephfd2xgft23qokfzt/app.bsky.feed.post/3mk7mrqydudg2"
},
"path": "/t/absolute-neophyte-instructions/175506#post_2",
"publishedAt": "2026-04-24T02:03:25.000Z",
"site": "https://discuss.huggingface.co",
"tags": [
"Hugging Face",
"docs.drawthings.ai",
"PyPI",
"GitHub"
],
"textContent": "Downloading models from Hugging Face can actually be quite difficult for beginners (though it’s easy if it’s just a single file…), so this **isn’t** a silly question.\n\n* * *\n\nThis is **not a stupid question**. The confusing part is that the button makes the process look like a normal app-store-style install, but it is not that simple.\n\nThe short version is:\n\n> **You can download FIBO from Hugging Face, but you probably cannot just “connect it to Draw Things” the way you would install a normal Draw Things model.**\n\nFIBO is not a simple one-file Stable Diffusion checkpoint. It is a **gated, multi-part Diffusers model pipeline**. Draw Things opening from Hugging Face only means the browser successfully launched Draw Things. It does **not** necessarily mean Draw Things downloaded, authenticated, converted, imported, and registered the model.\n\n* * *\n\n# 1. What probably happened when Draw Things opened\n\nWhen you clicked:\n\n> **Use this model → Local Apps → Draw Things**\n\nHugging Face tried to hand the model page over to Draw Things.\n\nThat handoff worked enough to open the app.\n\nBut then Draw Things apparently did not finish the import. The likely reason is that **FIBO is not in the simple format Draw Things expected** , or Draw Things does not currently support this exact FIBO pipeline.\n\nHugging Face’s own Local Apps documentation says the Local Apps path is for choosing a **supported model** and then selecting the local app from the model page. It also says the user may need to copy and run a command in Terminal. So the button is not a guarantee that every model works in every listed app. (Hugging Face)\n\nThere is also a similar public case where a user tried to import an SDXL Hugging Face model into Draw Things and reported that “nothing happens” after clicking **Import Custom Model**. That does not prove your exact issue, but it shows that this kind of silent Draw Things import failure is a known pattern. (Hugging Face)\n\n* * *\n\n# 2. The main beginner-safe explanation\n\nThink of it like this:\n\nThing | What it is | In your case\n---|---|---\n**Hugging Face** | A place where AI models are stored and documented | Where FIBO lives\n**FIBO** | The actual image-generation model | The model you want\n**Draw Things** | A local Mac/iOS image-generation app | The app you tried to use\n**Local Apps button** | A handoff from Hugging Face to an app | It opened Draw Things, but did not complete setup\n**Model files** | The actual downloadable AI weights/configs | FIBO has multiple parts, not one obvious file\n\nSo the issue is not:\n\n> “Where is the obvious download button?”\n\nThe issue is more like:\n\n> “This model is packaged as a full technical pipeline, and Draw Things may not know how to run that pipeline.”\n\n* * *\n\n# 3. Why FIBO is harder than a normal image model\n\nFIBO’s own model page says it is a **JSON-native text-to-image model** trained on long structured captions. It is designed for controllability over things like lighting, composition, color, and camera settings. It is also an **8B parameter** model. (Hugging Face)\n\nThat matters because many beginner image apps are built around more standard model types, such as Stable Diffusion-style checkpoints, SDXL-style checkpoints, LoRAs, or models already prepared for that app.\n\nFIBO is different. The Diffusers documentation shows FIBO as a `BriaFiboPipeline` with multiple components, including:\n\n * transformer,\n * scheduler,\n * VAE,\n * text encoder,\n * tokenizer. (Hugging Face)\n\n\n\nThat is why there may not be one obvious “download this file” button.\n\nIt is more like downloading a folder full of machine parts, not downloading one finished app.\n\n* * *\n\n# 4. Why your Hugging Face access may not automatically help Draw Things\n\nFIBO is gated. Hugging Face’s Diffusers documentation for FIBO says that before using it, you need to:\n\n 1. go to the FIBO Hugging Face page,\n 2. accept the gate,\n 3. log in locally so your system knows you accepted the gate,\n 4. use:\n\n\n\n\n hf auth login\n\n\n(Hugging Face)\n\nThat is important.\n\nYou may have access in your browser, but Draw Things may not automatically have your Hugging Face login/token. Browser access and app access are separate things.\n\nA simple analogy:\n\n> You may have a library card, but the app still has to know your library card number before it can borrow the book.\n\n* * *\n\n# 5. How to download FIBO manually\n\nThis downloads FIBO to your Mac. It does **not** guarantee Draw Things can run it.\n\n## Step 1: Open Terminal\n\nOn your Mac:\n\n 1. Press **Command + Space**.\n 2. Type **Terminal**.\n 3. Press **Return**.\n\n\n\n## Step 2: Install Hugging Face’s download tool\n\nPaste this into Terminal:\n\n\n python3 -m pip install -U huggingface_hub\n\n\nPress **Return**.\n\n## Step 3: Log in to Hugging Face\n\nPaste:\n\n\n hf auth login\n\n\nPress **Return**.\n\nIt will ask for a Hugging Face access token.\n\nTo create one:\n\n 1. Go to Hugging Face.\n 2. Click your profile picture.\n 3. Open **Settings**.\n 4. Open **Access Tokens**.\n 5. Create a **read** token.\n 6. Copy it.\n 7. Paste it into Terminal when asked.\n\n\n\nHugging Face’s docs say access tokens are the preferred way to authenticate applications and notebooks; the quickstart also says a read token is the safer choice when you only need to download/read resources. (Hugging Face)\n\nDo **not** post this token publicly.\n\n## Step 4: Make a folder for the model\n\nPaste:\n\n\n mkdir -p ~/AI-models\n\n\nPress **Return**.\n\n## Step 5: Test the download first\n\nPaste:\n\n\n hf download briaai/FIBO --local-dir ~/AI-models/FIBO --dry-run\n\n\nPress **Return**.\n\nThis checks what would be downloaded before actually downloading it. Hugging Face’s download guide covers downloading files from the Hub, downloading into a local folder, using the CLI, and dry-run mode. (Hugging Face)\n\n## Step 6: Actually download it\n\nIf the dry run works, paste:\n\n\n hf download briaai/FIBO --local-dir ~/AI-models/FIBO\n\n\nAfter this, the files should be in:\n\n\n ~/AI-models/FIBO\n\n\n* * *\n\n# 6. How to connect that downloaded FIBO folder to Draw Things\n\nHere is the honest answer:\n\n> **I would not expect the full FIBO folder to import cleanly into Draw Things right now unless Draw Things has explicit FIBO support.**\n\nYou can try Draw Things’ import menu, but it may not work.\n\nIn Draw Things, look for something like:\n\n> **Models → Manage → Import Model**\n\nor:\n\n> **Manage Models → Import**\n\nThen point it at the downloaded FIBO files.\n\nBut if Draw Things asks for one model file, and FIBO is a whole folder of parts, that is the mismatch.\n\nDraw Things documentation says it has ways to import custom models from places such as Hugging Face or Civitai, but “can import custom models” does not mean “can import every possible Hugging Face model pipeline.” (docs.drawthings.ai)\n\nFor FIBO, the most likely outcome is:\n\n> Draw Things does not know what to do with the FIBO pipeline.\n\n* * *\n\n# 7. Can you run FIBO offline on your Mac?\n\n**In principle, yes, but probably not through Draw Things.**\n\nThere are two separate questions:\n\n## Can FIBO be downloaded locally?\n\nYes, assuming your Hugging Face access and token work.\n\n## Can FIBO run offline inside Draw Things?\n\nThat is the part I would not count on.\n\nThe better Mac route is probably **MFLUX / MLX** , not Draw Things.\n\nThere is a `briaai/Fibo-mlx-4bit` model page specifically for a Mac-oriented version. It says FIBO is an 8B model and that MFLUX is built on Apple’s MLX framework to enable efficient diffusion-model inference on Apple Silicon. (Hugging Face)\n\nThe MFLUX package page also says it can run FLUX, Qwen Image, **FIBO** , and other models locally on your Mac. (PyPI)\n\nSo if your MacBook Air has an Apple Silicon chip — M1, M2, M3, or M4 — the more realistic local route is probably:\n\n> **Fibo-mlx-4bit + MFLUX**\n\nnot:\n\n> **FIBO + Draw Things**\n\n* * *\n\n# 8. Your MacBook Air detail matters, but the chip matters more than macOS\n\nYou said you are on:\n\n> **MacBook Air running macOS 14.3.1**\n\nThat is useful, but the more important question is:\n\n> **Is your MacBook Air Apple Silicon or Intel?**\n\nTo check:\n\n 1. Click the **Apple menu** in the top-left.\n 2. Click **About This Mac**.\n 3. Look for **Chip**.\n\n\n\nIf it says:\n\n * M1,\n * M2,\n * M3,\n * M4,\n\n\n\nthen you have Apple Silicon.\n\nIf it says **Intel** , then the MLX/MFLUX route is probably not right for you.\n\nFor FIBO specifically, Apple Silicon is important because the Mac-friendly FIBO route is tied to MLX/MFLUX. (Hugging Face)\n\n* * *\n\n# 9. What I recommend you do\n\n## If your goal is “I want to use Draw Things”\n\nThen I would use a model that Draw Things clearly supports.\n\nDo not make FIBO your first Draw Things import project. FIBO is too specialized and too new for that to be the beginner-friendly path.\n\nUse Draw Things with a built-in or clearly supported model first. That way you can learn:\n\n * prompts,\n * image size,\n * steps,\n * seeds,\n * model selection,\n * LoRAs,\n * saving images,\n\n\n\nwithout also fighting Hugging Face authentication and custom pipeline compatibility.\n\n## If your goal is “I specifically want to use FIBO”\n\nThen I would not start with Draw Things.\n\nI would use this order:\n\n 1. **Check your Mac chip.**\n 2. **Confirm Hugging Face access with`hf auth login`.**\n 3. **Try`Fibo-mlx-4bit` with MFLUX if you have Apple Silicon.**\n 4. **Use ComfyUI or the official FIBO/Diffusers route only if you are ready for more technical setup.**\n 5. **Come back to Draw Things only if there is a known working FIBO import method.**\n\n\n\nThe FIBO GitHub project describes FIBO as a structured-caption, controllable text-to-image model and explains that it is more of a project/pipeline than a simple app-ready checkpoint. (GitHub)\n\n* * *\n\n# 10. What I think is the most likely answer to your exact question\n\n## “How do I download the FIBO model?”\n\nUse the Hugging Face CLI:\n\n\n python3 -m pip install -U huggingface_hub\n hf auth login\n mkdir -p ~/AI-models\n hf download briaai/FIBO --local-dir ~/AI-models/FIBO --dry-run\n hf download briaai/FIBO --local-dir ~/AI-models/FIBO\n\n\nThat is the realistic “download” method.\n\n## “How do I connect it to Draw Things?”\n\nMost likely:\n\n> **You do not, at least not through a simple supported beginner workflow right now.**\n\nYou can try Draw Things import, but FIBO probably is not a normal Draw Things-compatible model package.\n\nThe better answer is:\n\n> **Use Draw Things for Draw Things-supported models. Use FIBO through FIBO-specific routes such as Diffusers, MFLUX/MLX, ComfyUI, or an API.**\n\n* * *\n\n# 11. Beginner-safe final recommendation\n\nFor your case, I would do this:\n\n 1. **Do not keep clicking the same Local Apps button.** It already opened Draw Things; the import did not complete.\n 2. **Verify your Hugging Face access in Terminal** using `hf auth login`.\n 3. **Download FIBO with`hf download`** only if you want the files locally.\n 4. **Check whether your MacBook Air has Apple Silicon.**\n 5. **If Apple Silicon, look at the`Fibo-mlx-4bit` / MFLUX route.**\n 6. **Use Draw Things with simpler supported models first.**\n 7. **Do not assume FIBO can be used offline inside Draw Things unless Draw Things explicitly supports FIBO.**\n\n\n\n* * *\n\n## Short summary\n\n * You are not missing an obvious download button.\n * FIBO is a gated, multi-part, structured-prompt Diffusers model.\n * Draw Things opening does not mean FIBO installed.\n * You can download FIBO with `hf auth login` and `hf download`.\n * The downloaded FIBO folder probably will not simply plug into Draw Things.\n * For local Mac use, `Fibo-mlx-4bit` with MFLUX is probably more realistic than Draw Things.\n * For beginner-friendly image generation, use Draw Things with models it clearly supports.\n\n",
"title": "Absolute Neophyte Instructions"
}