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

add notes for pixi and uv installation #404

Merged
merged 1 commit into from
Sep 30, 2024
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
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,14 @@ The recommended method for installing geosnap is with

```bash
mamba install -c conda-forge geosnap
```

Installation via `pixi` is supported, excluding `pixi global install`:

```bash
pixi init name_of_my_project
cd name_of_my_project
pixi add geosnap
```

`geosnap` is alaso available on PyPI and can be install with pip via
Expand All @@ -80,6 +88,12 @@ mamba install -c conda-forge geosnap
pip install geosnap
```

Installation via `uv` is supported:

```bash
uv pip install geosnap
```

## User Guide

See the [User Guide](https://oturns.github.io/geosnap-guide/) for a
Expand Down