Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Ensure Python and R install instructions list all drivers #877

Merged
merged 1 commit into from
Jul 6, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions docs/source/driver/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,14 @@ For example, from PyPI:

- ``pip install adbc-driver-flightsql``
- ``pip install adbc-driver-postgresql``
- ``pip install adbc-driver-snowflake``
- ``pip install adbc-driver-sqlite``

From conda-forge_:

- ``mamba install adbc-driver-flightsql``
- ``mamba install adbc-driver-postgresql``
- ``mamba install adbc-driver-snowflake``
- ``mamba install adbc-driver-sqlite``

R
Expand All @@ -85,4 +87,10 @@ Install the appropriate driver package from GitHub:
.. code-block:: r

# install.packages("pak")
pak::pak("apache/arrow-adbc/r/adbcflightsql")
pak::pak("apache/arrow-adbc/r/adbcpostgresql")
pak::pak("apache/arrow-adbc/r/adbcsnowflake")
pak::pak("apache/arrow-adbc/r/adbcsqlite")

Installation of stable releases from CRAN is anticipated following the
release of ADBC Libraries 0.6.0.
Loading