https://github.com/nushell/integrations
A place to gather data required for packaging Nushell and other integrations.
https://github.com/nushell/integrations
Last synced: 10 months ago
JSON representation
A place to gather data required for packaging Nushell and other integrations.
- Host: GitHub
- URL: https://github.com/nushell/integrations
- Owner: nushell
- License: mit
- Created: 2024-01-21T15:17:40.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-04-08T03:21:59.000Z (10 months ago)
- Last Synced: 2025-04-08T04:24:28.610Z (10 months ago)
- Language: Nushell
- Size: 56.6 KB
- Stars: 10
- Watchers: 10
- Forks: 6
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Integrations
[](https://github.com/nushell/integrations/actions/workflows/test.yml)
[](https://github.com/nushell/integrations/actions/workflows/publish.yml)
A community maintained place to gather data required for packaging Nushell and other integrations.
Package and release the official Nushell binaries in `deb`, `rpm`, and `apk` etc. formats for seamless installation across Linux distributions and Alpine systems.
## Install Nushell for Ubuntu/Debian
```nu
curl -fsSL https://apt.fury.io/nushell/gpg.key | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/fury-nushell.gpg
echo "deb https://apt.fury.io/nushell/ /" | sudo tee /etc/apt/sources.list.d/fury.list
sudo apt update
sudo apt install nushell
which nu
nu -c 'version'
```
## Install Nushell for RedHat/Fedora/RockyLinux/AlmaLinux/OpenEuler
```nu
echo "[nushell]
name=Nushell Repo
baseurl=https://yum.fury.io/nushell/
enabled=1
gpgcheck=0
gpgkey=https://yum.fury.io/nushell/gpg.key" | tee /etc/yum.repos.d/fury-nushell.repo
dnf install -y nushell
nu -c 'version'
```
## Install Nushell for Alpine Linux
```nu
echo "https://alpine.fury.io/nushell/" | tee -a /etc/apk/repositories
apk update || true
apk add --allow-untrusted nushell
which nu
nu -c 'version'
```
OR Read the [Test workflow](https://github.com/nushell/integrations/blob/main/.github/workflows/test.yml) for more details.
## License
Licensed under:
- MIT license ([LICENSE](LICENSE) or http://opensource.org/licenses/MIT)