File tree 1 file changed +29
-0
lines changed 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,35 @@ For Windows:
26
26
- [ Chocolatey] ( https://chocolatey.org/ ) (` choco install nushell ` )
27
27
- [ Scoop] ( https://scoop.sh/ ) (` scoop install nu ` )
28
28
29
+ For Debian & Ubuntu:
30
+
31
+ ``` sh
32
+ curl -fsSL https://apt.fury.io/nushell/gpg.key | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/fury-nushell.gpg
33
+ echo " deb https://apt.fury.io/nushell/ /" | sudo tee /etc/apt/sources.list.d/fury.list
34
+ sudo apt update
35
+ sudo apt install nushell
36
+ ```
37
+
38
+ For RedHat/Fedora & Rocky Linux:
39
+
40
+ ``` sh
41
+ echo " [gemfury-nushell]
42
+ name=Gemfury Nushell Repo
43
+ baseurl=https://yum.fury.io/nushell/
44
+ enabled=1
45
+ gpgcheck=0
46
+ gpgkey=https://yum.fury.io/nushell/gpg.key" | sudo tee /etc/yum.repos.d/fury-nushell.repo
47
+ sudo dnf install -y nushell
48
+ ```
49
+
50
+ For Alpine Linux:
51
+
52
+ ``` sh
53
+ echo " https://alpine.fury.io/nushell/" | tee -a /etc/apk/repositories
54
+ apk update
55
+ apk add --allow-untrusted nushell
56
+ ```
57
+
29
58
Cross Platform installation:
30
59
31
60
- [ npm] ( https://www.npmjs.com/ ) (` npm install -g nushell ` Note that nu plugins are not included if you install in this way)
You can’t perform that action at this time.
0 commit comments