Installation
Python Version
Cherry-ORM
only support Python 3.9+,Make sure your version of Python meets the requirements。
Installation
from PYPI
You can install Cherry-ORM
using your favorite Python package manager, such as pip
,poetry
,pdm
etc。
PIP
Poetry
PDM
from GIT
You can also install it from the source code to get the latest development version.
Optional Dependency
Choose which dependencies to install based on your database backend.
SQLite
aiosqlite
will be installed for you to support asynchrony.
MySQL
asyncmy
will be installed for you to support asynchrony.
PostgreSQL
asyncpg
will be installed for you to support asynchrony.
Install manually
Of course, you can manually install the back-end dependencies you need, such as pip install aiomysql
。