File size: 4,694 Bytes
8d756d3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 |
# Installing Nu
There are lots of ways to get Nu up and running. You can download pre-built binaries from our [release page](https://github.com/nushell/nushell/releases), [use your favourite package manager](https://repology.org/project/nushell/versions), or build from source.
The main Nushell binary is named `nu` (or `nu.exe` on Windows). After installation, you can launch it by typing `nu`.
@[code](@snippets/installation/run_nu.sh)
## Pre-built binaries
Nu binaries are published for Linux, macOS, and Windows [with each GitHub release](https://github.com/nushell/nushell/releases). Just download, extract the binaries, then copy them to a location on your PATH.
## Package managers
Nu is available via several package managers:
[](https://repology.org/project/nushell/versions)
For macOS and Linux, [Homebrew](https://brew.sh/) is a popular choice (`brew install nushell`).
For Windows:
- [Winget](https://docs.microsoft.com/en-us/windows/package-manager/winget/) (`winget install nushell`)
- [Chocolatey](https://chocolatey.org/) (`choco install nushell`)
- [Scoop](https://scoop.sh/) (`scoop install nu`)
Cross Platform installation:
- [npm](https://www.npmjs.com/) (`npm install -g nushell` Note that nu plugins are not included if you install in this way)
## Build from source
You can also build Nu from source. First, you will need to set up the Rust toolchain and its dependencies.
### Installing a compiler suite
For Rust to work properly, you'll need to have a compatible compiler suite installed on your system. These are the recommended compiler suites:
- Linux: GCC or Clang
- macOS: Clang (install Xcode)
- Windows: MSVC (install [Visual Studio](https://visualstudio.microsoft.com/vs/community/) or the [Visual Studio Build Tools](https://visualstudio.microsoft.com/downloads/#build-tools-for-visual-studio-2022))
- Make sure to install the "Desktop development with C++" workload
- Any Visual Studio edition will work (Community is free)
### Installing Rust
If you don't already have Rust on our system, the best way to install it is via [rustup](https://rustup.rs/). Rustup is a way of managing Rust installations, including managing using different Rust versions.
Nu currently requires the **latest stable (1.66.1 or later)** version of Rust. The best way is to let `rustup` find the correct version for you. When you first open `rustup` it will ask what version of Rust you wish to install:
@[code](@snippets/installation/rustup_choose_rust_version.sh)
Once you are ready, press 1 and then enter.
If you'd rather not install Rust via `rustup`, you can also install it via other methods (e.g. from a package in a Linux distro). Just be sure to install a version of Rust that is 1.66.1 or later.
### Dependencies
#### Debian/Ubuntu
You will need to install the "pkg-config" and "libssl-dev" package:
@[code](@snippets/installation/install_pkg_config_libssl_dev.sh)
#### RHEL based distros
You will need to install "libxcb", "openssl-devel" and "libX11-devel":
@[code](@snippets/installation/install_rhel_dependencies.sh)
#### macOS
Using [Homebrew](https://brew.sh/), you will need to install "openssl" and "cmake" using:
@[code](@snippets/installation/macos_deps.sh)
### Build using [crates.io](https://crates.io)
Nu releases are published as source to the popular Rust package registry [crates.io](https://crates.io/). This makes it easy to build and install the latest Nu release with `cargo`:
@[code](@snippets/installation/cargo_install_nu.sh)
That's it! The `cargo` tool will do the work of downloading Nu and its source dependencies, building it, and installing it into the cargo bin path.
If you want to install with support for [dataframes](dataframes.md), you can install using the `--features=dataframe` flag.
@[code](@snippets/installation/cargo_install_nu_more_features.sh)
### Building from the GitHub repository
You can also build Nu from the latest source on GitHub. This gives you immediate access to the latest features and bug fixes. First, clone the repo:
@[code](@snippets/installation/git_clone_nu.sh)
From there, we can build and run Nu with:
@[code](@snippets/installation/build_nu_from_source.sh)
You can also build and run Nu in release mode, which enables more optimizations:
@[code](@snippets/installation/build_nu_from_source_release.sh)
People familiar with Rust may wonder why we do both a "build" and a "run" step if "run" does a build by default. This is to get around a shortcoming of the new `default-run` option in Cargo, and ensure that all plugins are built, though this may not be required in the future.
|