Coming soon. Please see our github!
https://github.com/fullbleed-engine/fullbleed-official
Fullbleed Install Guide (Non-Technical)
This guide is for people who are new to Python.
Goal: install Python, install Fullbleed, and generate your first PDF.
1. Install Python
Use Python 3.11 (64-bit) if you are unsure. Fullbleed requires Python 3.8+.
Windows
- Open https://www.python.org/downloads/windows/.
- Download Python
3.11.x(64-bit). - Run the installer.
- Check Add python.exe to PATH.
- Click Install Now.
- Close PowerShell and open it again.
macOS
- Open https://www.python.org/downloads/macos/.
- Download Python
3.11.x. - Run the installer package.
- Close Terminal and open it again.
Linux (Ubuntu/Debian)
Open Terminal and run:
sudo apt update
sudo apt install -y python3 python3-pip
2. Verify Python and pip
Windows
python --version
python -m pip --version
macOS/Linux
python3 --version
python3 -m pip --version
If python is not found, use python3 in all commands below.
3. Install Fullbleed
Windows
python -m pip install --upgrade pip
python -m pip install fullbleed
macOS/Linux
python3 -m pip install --upgrade pip
python3 -m pip install fullbleed
4. Verify Fullbleed
Try:
fullbleed --help
If fullbleed is not recognized, use:
python -m fullbleed --help
or:
python3 -m fullbleed --help
5. Create your first PDF
Create a folder and run Fullbleed scaffold:
Windows
mkdir my-first-fullbleed
cd my-first-fullbleed
fullbleed init .
python report.py
macOS/Linux
mkdir my-first-fullbleed
cd my-first-fullbleed
fullbleed init .
python3 report.py
Expected output file:
output/report.pdf
6. Common fixes
- Error:
python is not recognized- Re-run the Python installer and check
Add python.exe to PATH, then restart terminal.
- Re-run the Python installer and check
- Error:
No module named pip- Run
python -m ensurepip --upgrade(orpython3 -m ensurepip --upgrade).
- Run
- Error mentions
Rust,cargo, or building a wheel- Upgrade pip first, then retry install.
- Use Python
3.1164-bit to avoid unsupported interpreter builds.
- Error:
fullbleed is not recognized- Restart terminal.
- Use
python -m fullbleed --help(orpython3 -m fullbleed --help).
- Permission error when running pip
- Use
python -m pip install --user fullbleed(orpython3 -m pip install --user fullbleed).
- Use
7. Install from a local wheel (optional)
If someone gives you a .whl file directly:
python -m pip install C:\path\to\fullbleed-0.2.7-cp311-cp311-win_amd64.whl