-
Notifications
You must be signed in to change notification settings - Fork 295
Installation
Dipkumar Patel edited this page Feb 4, 2026
·
2 revisions
- Python 3.10 or higher
- A Google Gemini API key (free from Google AI Studio)
git clone https://github.com/llmsresearch/paperbanana.git
cd paperbanana
pip install -e ".[google]"Run the setup wizard to configure your API key:
paperbanana setupThis opens your browser to Google AI Studio, where you can create a free API key. The wizard saves it to a .env file in the project root.
If you prefer to set up manually:
cp .env.example .envEdit .env and add your key:
GOOGLE_API_KEY=your-key-here
For contributors:
pip install -e ".[dev,google]"This installs additional dependencies for testing (pytest) and linting (ruff).
paperbanana generate \
--input examples/sample_inputs/transformer_method.txt \
--caption "Overview of our encoder-decoder architecture with sparse routing"If you see output saved to outputs/run_<timestamp>/final_output.png, everything is working.
See MCP Server Setup for IDE integration.