Skip to content

Installation

Warning

Make sure you read the Before Starting documentation.

Install Fastberry

pdm add "fastberry[testing]"

For the example above we used the "testing" option. It will install SQL and Mongo.

And SQL will be installed with SQLite that way the only extra step you need is to download MongoDB

However, is optional. You can use SQL only for testing purposes.

Note

2 Main Options are available for fastberry installation.

Mongo

pdm add "fastberry[mongo]"

SQL

pdm add "fastberry[sql]"

SQL comes with 3 options


PostgreSQL

pdm add "fastberry[sql]" "databases[postgresql]"

MySQL

pdm add "fastberry[sql]" "databases[mysql]"

SQLite

pdm add "fastberry[sql]" "databases[sqlite]"