From 96ce9c60c941464805cfedd35e87e1da400e1f07 Mon Sep 17 00:00:00 2001 From: Waket Zheng Date: Sat, 12 Oct 2024 10:10:27 +0800 Subject: [PATCH] Update readme for install with extras in zsh --- README.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 4b1db37d8..75e72b93b 100644 --- a/README.rst +++ b/README.rst @@ -73,20 +73,20 @@ You can also install with your db driver (`aiosqlite` is builtin): .. code-block:: bash - pip install tortoise-orm[asyncpg] + pip install "tortoise-orm[asyncpg]" For `MySQL`: .. code-block:: bash - pip install tortoise-orm[asyncmy] + pip install "tortoise-orm[asyncmy]" For `Microsoft SQL Server`/`Oracle` (**not fully tested**): .. code-block:: bash - pip install tortoise-orm[asyncodbc] + pip install "tortoise-orm[asyncodbc]" Quick Tutorial --------------