Skip to content

Commit

Permalink
Document conda installation.
Browse files Browse the repository at this point in the history
  • Loading branch information
joaander committed May 28, 2024
1 parent ef81ee7 commit 3c02447
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,12 @@ jobs:
# start of the file.
# 4. Remove the 1st version heading.
# This leaves the content of the release notes for the current release.
run: grep -P -m 2 -B 10000 "^## v*\d*\.\d*\.\d*" doc/src/release-notes.md | sed '$d' | grep -m 2 -B 10000 "^## v*\d*\.\d*\.\d*" | sed '1d' | tee "${GITHUB_WORKSPACE}/release-notes.md"
run: >
grep -P -m 2 -B 10000 "^## v*\d*\.\d*\.\d*" doc/src/release-notes.md |
sed '$d' |
grep -P -m 2 -B 10000 "^## v*\d*\.\d*\.\d*" |
sed '1d' |
tee "${GITHUB_WORKSPACE}/release-notes.md"
working-directory: code

- uses: actions/[email protected]
Expand Down
9 changes: 8 additions & 1 deletion doc/src/guide/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,14 @@

## Installing binaries with conda

*Coming soon...*
**Row** is available on [conda-forge] for the *linux-64*, *linux-aarch64*, *osx-64*,
*osx-arm64* architectures. Install with:

```bash
mamba install row
```

[conda-forge]: https://conda-forge.org/

## Installing binaries manually

Expand Down

0 comments on commit 3c02447

Please sign in to comment.