1
0
mirror of https://github.com/schollz/croc.git synced 2024-11-23 15:44:16 +03:00

docs: Add conda-forge install instructions for pixi and conda

* The conda-forge build supports Linux, macOS, and Windows.
   - c.f. https://github.com/conda-forge/croc-feedstock/
This commit is contained in:
Matthew Feickert 2024-11-13 12:14:43 -07:00
parent d616b8fff7
commit a61a461436
No known key found for this signature in database
GPG Key ID: DD43A17EC2D4318D

View File

@ -104,7 +104,19 @@ On FreeBSD you can install with `pkg`:
pkg install croc
```
Or, you can [install Go](https://golang.org/dl/) and build from source (requires Go 1.17+):
On Linux, macOS, and Windows you can install from [conda-forge](https://github.com/conda-forge/croc-feedstock/) globally with [`pixi`](https://pixi.sh/):
```
pixi global install croc
```
or into a particular environment with [`conda`](https://docs.conda.io/projects/conda/):
```
conda install --channel conda-forge croc
```
Or, you can [install Go](https://golang.org/dl/) and build from source (requires Go 1.17+):
```
go install github.com/schollz/croc/v10@latest