ianmcook commented on code in PR #4525: URL: https://github.com/apache/arrow-adbc/pull/4525#discussion_r3600410006
########## docs/source/python/quickstart.rst: ########## @@ -19,14 +19,21 @@ Quickstart ========== -Here we'll briefly tour basic features of ADBC with the SQLite driver. +Here we'll briefly tour basic features of ADBC with Python using the SQLite driver. Installation ============ .. code-block:: shell - pip install adbc_driver_manager adbc_driver_sqlite pyarrow + pip install adbc_driver_manager pyarrow + +Installing Drivers +------------------ + +See :ref:`driver-table-install` for instructions on installing ADBC drivers for +the database you want to connect to. For the example below, you could install +`dbc <https://docs.columnar.tech/dbc>`__ and run ``dbc install sqlite``. Review Comment: Since this is a Python example and it already requires pip, any objections to suggesting this here? ```sh pipx install dbc ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
