This is an automated email from the ASF dual-hosted git repository.
jiayuliu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git
The following commit(s) were added to refs/heads/master by this push:
new f19cf7c datafusion cli run via homebrew (#1198)
f19cf7c is described below
commit f19cf7c5c1dee9bb7071800f2ac3aea01e7c3dd1
Author: Jiayu Liu <[email protected]>
AuthorDate: Fri Oct 29 00:21:28 2021 +0800
datafusion cli run via homebrew (#1198)
now that datafusion cli can be installed via brew, we can add the docs
for that
---
docs/source/cli/index.rst | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/docs/source/cli/index.rst b/docs/source/cli/index.rst
index 2b91430..89f7f5d 100644
--- a/docs/source/cli/index.rst
+++ b/docs/source/cli/index.rst
@@ -23,6 +23,24 @@ The Arrow DataFusion CLI is a command-line interactive SQL
utility that allows
queries to be executed against CSV and Parquet files. It is a convenient way to
try DataFusion out with your own data sources.
+Install and run using Homebrew (on MacOS)
+=========================================
+
+The easiest way to give DataFusion CLI a spin is via Homebrew (on MacOS).
Install it as any other pre-built software like this:
+
+.. code-block:: bash
+
+ brew install datafusion
+ # ==> Downloading
https://ghcr.io/v2/homebrew/core/datafusion/manifests/5.0.0
+ # ########################################################################
100.0%
+ # ==> Downloading
https://ghcr.io/v2/homebrew/core/datafusion/blobs/sha256:9ecc8a01be47ceb9a53b39976696afa87c0a8
+ # ==> Downloading from
https://pkg-containers.githubusercontent.com/ghcr1/blobs/sha256:9ecc8a01be47ceb9a53b39976
+ # ########################################################################
100.0%
+ # ==> Pouring datafusion--5.0.0.big_sur.bottle.tar.gz
+ # 🍺 /usr/local/Cellar/datafusion/5.0.0: 9 files, 17.4MB
+
+ datafusion-cli
+
Run using Cargo
===============