This is an automated email from the ASF dual-hosted git repository.
kou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-swift.git
The following commit(s) were added to refs/heads/main by this push:
new d5c6c2c docs: Add install instructions to README (#124)
d5c6c2c is described below
commit d5c6c2c9e918ac0844a92a4a957f70df47356157
Author: Christian Tietze <[email protected]>
AuthorDate: Mon Jan 19 22:04:53 2026 +0100
docs: Add install instructions to README (#124)
## What's Changed
Includes the usual copy-and-paste-able instructions to get started
working with a Swift Package.
Closes #87.
---
README.md | 27 +++++++++++++++++++++++++--
1 file changed, 25 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index 327ea70..a482be0 100644
--- a/README.md
+++ b/README.md
@@ -21,9 +21,32 @@
[Apache Arrow](https://arrow.apache.org/) is a universal columnar format and
multi-language toolbox for fast data interchange and in-memory analytics. It
contains a set of technologies that enable data systems to efficiently store,
process, and move data.
-## Install
+## Installation
-TODO: We should update this after we register this package to Swift Package
Index.
+### Swift Package Manager
+
+Add Arrow as a dependency in your `Package.swift`:
+
+```swift
+dependencies: [
+ .package(url: "https://github.com/apache/arrow-swift.git", from: "21.0.0")
+]
+```
+
+Then add `Arrow` to your target's dependencies:
+
+```swift
+.target(
+ name: "YourTarget",
+ dependencies: ["Arrow"]
+)
+```
+
+### Xcode
+
+1. Go to **File > Add Package Dependencies...**
+2. Enter the repository URL: `https://github.com/apache/arrow-swift.git`
+3. Select your desired version rules and click **Add Package**
## Getting Started