Quick Start

Master Flux Krea basics in 10 minutes

0

🚀 Online Experience (Recommended)

No installation required - experience Flux Krea directly in your browser

Free to Use Ready to Go Gradio Interface
Try Now
1

Download Model

Download Flux Krea model files from Hugging Face

Download Now
2

Environment Setup

Install Python environment and required dependencies

pip install torch diffusers transformers
3

Generate Images

Use simple Python code to generate your first image

from diffusers import FluxPipeline
pipe = FluxPipeline.from_pretrained("black-forest-labs/FLUX.1-Krea-dev")
image = pipe("a beautiful sunset over mountains").images[0]
image.save("my_first_image.png")