nvm-sh/nvm
Node Version Manager
Table of Contents
- Intro
- About
- Installing and Updating
- Usage
- Running Tests
- Environment variables
- Bash Completion
- Compatibility Issues
- Installing nvm on Alpine Linux
- Uninstalling / Removal
- Docker For Development Environment
- Problems
- macOS Troubleshooting
- WSL Troubleshooting
- Maintainers
- Project Support
- Enterprise Support
- License
- Copyright notice
Intro
nvm allows you to quickly install and use different versions of node via the command line.
Example:
|
|
Simple as that!
About
nvm is a version manager for node.js, designed to be installed per-user, and invoked per-shell. nvm works on any POSIX-compliant shell (sh, dash, ksh, zsh, bash), in particular on these platforms: unix, macOS, and windows WSL.
Installing and Updating
Install & Update Script
To install or update nvm, you should run the install script. To do that, you may either download and run the script manually, or use the following cURL or Wget command:
|
|
|
|
Running either of the above commands downloads a script and runs it. The script clones the nvm repository to ~/.nvm, and attempts to add the source lines from the snippet below to the correct profile file (~/.bashrc, ~/.bash_profile, ~/.zshrc, or ~/.profile). If you find the install script is updating the wrong profile file, set the $PROFILE env var to the profile fileâs path, and then rerun the installation script.
|
|
Additional Notes
-
If the environment variable
$XDG_CONFIG_HOMEis present, it will place thenvmfiles there. -
You can add
--no-useto the end of the above script to postpone usingnvmuntil you manuallyuseit:
|
|
-
You can customize the install source, directory, profile, and version using the
NVM_SOURCE,NVM_DIR,PROFILE, andNODE_VERSIONvariables. Eg:curl ... | NVM_DIR="path/to/nvm". Ensure that theNVM_DIRdoes not contain a trailing slash. -
The installer can use
git,curl, orwgetto downloadnvm, whichever is available. -
You can instruct the installer to not edit your shell config (for example if you already get completions via a zsh nvm plugin) by setting
PROFILE=/dev/nullbefore running theinstall.shscript. Hereâs an example one-line command to do that:PROFILE=/dev/null bash -c 'curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash'
Installing in Docker
When invoking bash as a non-interactive shell, like in a Docker container, none of the regular profile files are sourced. In order to use nvm, node, and npm like normal, you can instead specify the special BASH_ENV variable, which bash sources when invoked non-interactively.
|
|
Installing in Docker for CICD-Jobs
More robust, works in CI/CD-Jobs. Can be run in interactive and non-interactive containers. See https://github.com/nvm-sh/nvm/issues/3531.
|
|
This example defaults to installation of nodejs version 20.x.y. Optionally you can easily override the version with docker build args like:
|
|
After creation of the image you can start container interactively and run commands, for example:
|
|
Noninteractive example:
|
|
Troubleshooting on Linux
On Linux, after running the install script, if you get nvm: command not found or see no feedback from your terminal after you type command -v nvm, simply close your current terminal, open a new terminal, and try verifying again.
Alternatively, you can run the following commands for the different shells on the command line:
bash: source ~/.bashrc
zsh: source ~/.zshrc
ksh: . ~/.profile
These should pick up the nvm command.
Troubleshooting on macOS
Since OS X 10.9, /usr/bin/git has been preset by Xcode command line tools, which means we canât properly detect if Git is installed or not. You need to manually install the Xcode command line tools before running the install script, otherwise, itâll fail. (see #1782)
If you get nvm: command not found after running the install script, one of the following might be the reason:
-
Since macOS 10.15, the default shell is
zshand nvm will look for.zshrcto update, none is installed by default. Create one withtouch ~/.zshrcand run the install script again. -
If you use bash, the previous default shell, your system may not have
.bash_profileor.bashrcfiles where the command is set up. Create one of them withtouch ~/.bash_profileortouch ~/.bashrcand run the install script again. Then, run. ~/.bash_profileor. ~/.bashrcto pick up thenvmcommand. -
You have previously used
bash, but you havezshinstalled. You need to manually add these lines to~/.zshrcand run. ~/.zshrc. -
You might need to restart your terminal instance or run
. ~/.nvm/nvm.sh. Restarting your terminal/opening a new tab/window, or running the source command will load the command and the new configuration. -
If the above didnât help, you might need to restart your terminal instance. Try opening a new tab/window in your terminal and retry.
If the above doesnât fix the problem, you may try the following:
-
If you use bash, it may be that your
.bash_profile(or~/.profile) does not source your~/.bashrcproperly. You could fix this by addingsource ~/<your_profile_file>to it or following the next step below. -
Try adding the snippet from the install section, that finds the correct nvm directory and loads nvm, to your usual profile (
~/.bash_profile,~/.zshrc,~/.profile, or~/.bashrc). -
For more information about this issue and possible workarounds, please refer here
Note For Macs with the Apple Silicon chip, node started offering arm64 arch Darwin packages since v16.0.0 and experimental arm64 support when compiling from source since v14.17.0. If you are facing issues installing node using nvm, you may want to update to one of those versions or later.
Ansible
You can use a task:
|
|
Verify Installation
To verify that nvm has been installed, do:
|
|
which should output nvm if the installation was successful. Please note that which nvm will not work, since nvm is a sourced shell function, not an executable binary.
Note: On Linux, after running the install script, if you get nvm: command not found or see no feedback from your terminal after you type command -v nvm, simply close your current terminal, open a new terminal, and try verifying again.
Important Notes
If youâre running a system without prepackaged binary available, which means youâre going to install node or io.js from its source code, you need to make sure your system has a C++ compiler. For OS X, Xcode will work, for Debian/Ubuntu based GNU/Linux, the build-essential and libssl-dev packages work.
Note: nvm also supports Windows in some cases. It should work through WSL (Windows Subsystem for Linux) depending on the version of WSL. It should also work with GitBash (MSYS) or Cygwin. Otherwise, for Windows, a few alternatives exist, which are neither supported nor developed by us:
Note: nvm does not support Fish either (see #303). Alternatives exist, which are neither supported nor developed by us:
- bass allows you to use utilities written for Bash in fish shell
- fast-nvm-fish only works with version numbers (not aliases) but doesnât significantly slow your shell startup
- plugin-nvm plugin for Oh My Fish, which makes nvm and its completions available in fish shell
- nvm.fish - The Node.js version manager youâll adore, crafted just for Fish
- fish-nvm - Wrapper around nvm for fish, delays sourcing nvm until itâs actually used.
Note: We still have some problems with FreeBSD, because there is no official pre-built binary for FreeBSD, and building from source may need patches; see the issue ticket:
Note: On OS X, if you do not have Xcode installed and you do not wish to download the ~4.3GB file, you can install the Command Line Tools. You can check out this blog post on how to just that:
Note: On OS X, if you have/had a âsystemâ node installed and want to install modules globally, keep in mind that:
- When using
nvmyou do not needsudoto globally install a module withnpm -g, so instead of doingsudo npm install -g grunt, do insteadnpm install -g grunt - If you have an
~/.npmrcfile, make sure it does not contain anyprefixsettings (which is not compatible withnvm) - You can (but should not?) keep your previous âsystemâ node install, but
nvmwill only be available to your user account (the one used to install nvm). This might cause version mismatches, as other users will be using/usr/local/lib/node_modules/*VS your user account using~/.nvm/versions/node/vX.X.X/lib/node_modules/*
Homebrew installation is not supported. If you have issues with homebrew-installed nvm, please brew uninstall it, and install it using the instructions below, before filing an issue.
Note: If youâre using zsh you can easily install nvm as a zsh plugin. Install zsh-nvm and run nvm upgrade to upgrade (you can set NVM_AUTO_USE=true to have it automatically detect and use .nvmrc files).
Note: Git versions before v1.7 may face a problem of cloning nvm source from GitHub via https protocol, and there is also different behavior of git before v1.6, and git prior to v1.17.10 can not clone tags, so the minimum required git version is v1.7.10. If you are interested in the problem we mentioned here, please refer to GitHubâs HTTPS cloning errors article.
Git Install
If you have git installed (requires git v1.7.10+):
- clone this repo in the root of your user profile
cd ~/from anywhere thengit clone https://github.com/nvm-sh/nvm.git .nvm
cd ~/.nvmand check out the latest version withgit checkout v0.40.3- activate
nvmby sourcing it from your shell:. ./nvm.sh
Now add these lines to your ~/.bashrc, ~/.profile, or ~/.zshrc file to have it automatically sourced upon login:
(you may have to add to more than one of the above files)
|
|
Manual Install
For a fully manual install, execute the following lines to first clone the nvm repository into $HOME/.nvm, and then load nvm:
|
|
Now add these lines to your ~/.bashrc, ~/.profile, or ~/.zshrc file to have it automatically sourced upon login:
(you may have to add to more than one of the above files)
|
|
Manual Upgrade
For manual upgrade with git (requires git v1.7.10+):
- change to the
$NVM_DIR - pull down the latest changes
- check out the latest version
- activate the new version
|
|
Usage
To download, compile, and install the latest release of node, do this:
|
|
To install a specific version of node:
|
|
To set an alias:
|
|
Make sure that your alias does not contain any spaces or slashes.
The first version installed becomes the default. New shells will start with the default version of node (e.g., nvm alias default).
You can list available versions using ls-remote:
|
|
And then in any new shell just use the installed version:
|
|
Or you can just run it:
|
|
Or, you can run any arbitrary command in a subshell with the desired version of node:
|
|
You can also get the path to the executable to where it was installed:
|
|
In place of a version pointer like â14.7â or â16.3â or â12.22.1â, you can use the following special default aliases with nvm install, nvm use, nvm run, nvm exec, nvm which, etc:
node: this installs the latest version ofnodeiojs: this installs the latest version ofio.jsstable: this alias is deprecated, and only truly applies tonodev0.12and earlier. Currently, this is an alias fornode.unstable: this alias points tonodev0.11- the last âunstableâ node release, since post-1.0, all node versions are stable. (in SemVer, versions communicate breakage, not stability).
Long-term Support
Node has a schedule for long-term support (LTS) You can reference LTS versions in aliases and .nvmrc files with the notation lts/* for the latest LTS, and lts/argon for LTS releases from the âargonâ line, for example. In addition, the following commands support LTS arguments:
nvm install --lts/nvm install --lts=argon/nvm install 'lts/*'/nvm install lts/argonnvm uninstall --lts/nvm uninstall --lts=argon/nvm uninstall 'lts/*'/nvm uninstall lts/argonnvm use --lts/nvm use --lts=argon/nvm use 'lts/*'/nvm use lts/argonnvm exec --lts/nvm exec --lts=argon/nvm exec 'lts/*'/nvm exec lts/argonnvm run --lts/nvm run --lts=argon/nvm run 'lts/*'/nvm run lts/argonnvm ls-remote --lts/nvm ls-remote --lts=argonnvm ls-remote 'lts/*'/nvm ls-remote lts/argonnvm version-remote --lts/nvm version-remote --lts=argon/nvm version-remote 'lts/*'/nvm version-remote lts/argon
Any time your local copy of nvm connects to https://nodejs.org, it will re-create the appropriate local aliases for all available LTS lines. These aliases (stored under $NVM_DIR/alias/lts), are managed by nvm, and you should not modify, remove, or create these files - expect your changes to be undone, and expect meddling with these files to cause bugs that will likely not be supported.
To get the latest LTS version of node and migrate your existing installed packages, use
|
|
Migrating Global Packages While Installing
If you want to install a new version of Node.js and migrate npm packages from a previous version:
|
|
This will first use ânvm version nodeâ to identify the current version youâre migrating packages from. Then it resolves the new version to install from the remote server and installs it. Lastly, it runs ânvm reinstall-packagesâ to reinstall the npm packages from your prior version of Node to the new one.
You can also install and migrate npm packages from specific versions of Node like this:
|
|
Note that reinstalling packages explicitly does not update the npm version â this is to ensure that npm isnât accidentally upgraded to a broken version for the new node version.
To update npm at the same time add the --latest-npm flag, like this:
|
|
or, you can at any time run the following command to get the latest supported npm version on the current node version:
|
|
If youâve already gotten an error to the effect of ânpm does not support Node.jsâ, youâll need to (1) revert to a previous node version (nvm ls & nvm use <your latest _working_ version from the ls>), (2) delete the newly created node version (nvm uninstall <your _broken_ version of node from the ls>), then (3) rerun your nvm install with the --latest-npm flag.
Default Global Packages From File While Installing
If you have a list of default packages you want installed every time you install a new version, we support that too â just add the package names, one per line, to the file $NVM_DIR/default-packages. You can add anything npm would accept as a package argument on the command line.
|
|
io.js
If you want to install io.js:
|
|
If you want to install a new version of io.js and migrate npm packages from a previous version:
|
|
The same guidelines mentioned for migrating npm packages in node are applicable to io.js.
System Version of Node
If you want to use the system-installed version of node, you can use the special default alias âsystemâ:
|
|
Listing Versions
If you want to see what versions are installed:
|
|
If you want to see what versions are available to install:
|
|
Setting Custom Colors
You can set five colors that will be used to display version and alias information. These colors replace the default colors. Initial colors are: g b y r e
Color codes:
r/R = red / bold red
g/G = green / bold green
b/B = blue / bold blue
c/C = cyan / bold cyan
m/M = magenta / bold magenta
y/Y = yellow / bold yellow
k/K = black / bold black
e/W = light grey / white
|
|
Persisting custom colors
If you want the custom colors to persist after terminating the shell, export the NVM_COLORS variable in your shell profile. For example, if you want to use cyan, magenta, green, bold red and bold yellow, add the following line:
|
|
Suppressing colorized output
nvm help (or -h or --help), nvm ls, nvm ls-remote and nvm alias usually produce colorized output. You can disable colors with the --no-colors option (or by setting the environment variable TERM=dumb):
|
|
Restoring PATH
To restore your PATH, you can deactivate it:
|
|
Set default node version
To set a default Node version to be used in any new shell, use the alias âdefaultâ:
|
|
Use a mirror of node binaries
To use a mirror of the node binaries, set $NVM_NODEJS_ORG_MIRROR:
|
|
To use a mirror of the io.js binaries, set $NVM_IOJS_ORG_MIRROR:
|
|
nvm use will not, by default, create a âcurrentâ symlink. Set $NVM_SYMLINK_CURRENT to âtrueâ to enable this behavior, which is sometimes useful for IDEs. Note that using nvm in multiple shell tabs with this environment variable enabled can cause race conditions.
Pass Authorization header to mirror
To pass an Authorization header through to the mirror url, set $NVM_AUTH_HEADER
|
|
.nvmrc
You can create a .nvmrc file containing a node version number (or any other string that nvm understands; see nvm --help for details) in the project root directory (or any parent directory).
Afterwards, nvm use, nvm install, nvm exec, nvm run, and nvm which will use the version specified in the .nvmrc file if no version is supplied on the command line.
For example, to make nvm default to the latest 5.9 release, the latest LTS version, or the latest node version for the current directory:
|
|
[NB these examples assume a POSIX-compliant shell version of echo. If you use a Windows cmd development environment, eg the .nvmrc file is used to configure a remote Linux deployment, then keep in mind the "s will be copied leading to an invalid file. Remove them.]
Then when you run nvm use:
|
|
Running nvm install will also switch over to the correct version, but if the correct node version isnât already installed, it will install it for you.
|
|
nvm use et. al. will traverse directory structure upwards from the current directory looking for the .nvmrc file. In other words, running nvm use et. al. in any subdirectory of a directory with an .nvmrc will result in that .nvmrc being utilized.
The contents of a .nvmrc file must contain precisely one <version> (as described by nvm --help) followed by a newline. .nvmrc files may also have comments. The comment delimiter is #, and it and any text after it, as well as blank lines, and leading and trailing white space, will be ignored when parsing.
Key/value pairs using = are also allowed and ignored, but are reserved for future use, and may cause validation errors in the future.
Run npx nvmrc to validate an .nvmrc file. If that toolâs results do not agree with nvm, one or the other has a bug - please file an issue.
Deeper Shell Integration
You can use nvshim to shim the node, npm, and npx bins to automatically use the nvm config in the current directory. nvshim is not supported by the nvm maintainers. Please report issues to the nvshim team.
If you prefer a lighter-weight solution, the recipes below have been contributed by nvm users. They are not supported by the nvm maintainers. We are, however, accepting pull requests for more examples.
Calling nvm use automatically in a directory with a .nvmrc file
In your profile (~/.bash_profile, ~/.zshrc, ~/.profile, or ~/.bashrc), add the following to nvm use whenever you enter a new directory:
bash
Put the following at the end of your $HOME/.bashrc:
|
|
This alias would search âupâ from your current directory in order to detect a .nvmrc file. If it finds it, it will switch to that version; if not, it will use the default version.
zsh
This shell function will install (if needed) and nvm use the specified Node version when an .nvmrc is found, and nvm use default otherwise.
Put this into your $HOME/.zshrc to call nvm use automatically whenever you enter a directory that contains an
.nvmrc file with a string telling nvm which node to use:
|
|
After saving the file, run source ~/.zshrc to reload the configuration with the latest changes made.
fish
This requires that you have bass installed.
|
|
Running Tests
Tests are written in Urchin. Install Urchin (and other dependencies) like so:
npm install
There are slow tests and fast tests. The slow tests do things like install node and check that the right versions are used. The fast tests fake this to test things like aliases and uninstalling. From the root of the nvm git repository, run the fast tests like this:
npm run test/fast
Run the slow tests like this:
npm run test/slow
Run all of the tests like this:
npm test
Nota bene: Avoid running nvm while the tests are running.
Environment variables
nvm exposes the following environment variables:
NVM_DIR- nvmâs installation directory.NVM_BIN- where node, npm, and global packages for the active version of node are installed.NVM_INC- nodeâs include file directory (useful for building C/C++ addons for node).NVM_CD_FLAGS- used to maintain compatibility with zsh.NVM_RC_VERSION- version from .nvmrc file if being used.
Additionally, nvm modifies PATH, and, if present, MANPATH and NODE_PATH when changing versions.
Bash Completion
To activate, you need to source bash_completion:
|
|
Put the above sourcing line just below the sourcing line for nvm in your profile (.bashrc, .bash_profile).
Usage
nvm:
$ nvmTab
|
|
nvm alias:
$ nvm aliasTab
|
|
$ nvm alias my_aliasTab
|
|
nvm use:
$ nvm useTab
|
|
nvm uninstall:
$ nvm uninstallTab
|
|
Compatibility Issues
nvm will encounter some issues if you have some non-default settings set. (see #606)
The following are known to cause issues:
Inside ~/.npmrc:
|
|
Environment Variables:
|
|
Shell settings:
|
|
Installing nvm on Alpine Linux
In order to provide the best performance (and other optimizations), nvm will download and install pre-compiled binaries for Node (and npm) when you run nvm install X. The Node project compiles, tests and hosts/provides these pre-compiled binaries which are built for mainstream/traditional Linux distributions (such as Debian, Ubuntu, CentOS, RedHat et al).
Alpine Linux, unlike mainstream/traditional Linux distributions, is based on BusyBox, a very compact (~5MB) Linux distribution. BusyBox (and thus Alpine Linux) uses a different C/C++ stack to most mainstream/traditional Linux distributions - musl. This makes binary programs built for such mainstream/traditional incompatible with Alpine Linux, thus we cannot simply nvm install X on Alpine Linux and expect the downloaded binary to run correctly - youâll likely see ââŠdoes not existâ errors if you try that.
There is a -s flag for nvm install which requests nvm download Node source and compile it locally.
If installing nvm on Alpine Linux is still what you want or need to do, you should be able to achieve this by running the following from you Alpine Linux shell, depending on which version you are using:
Alpine Linux 3.13+
|
|
Alpine Linux 3.5 - 3.12
|
|
Note: Alpine 3.5 can only install NodeJS versions up to v6.9.5, Alpine 3.6 can only install versions up to v6.10.3, Alpine 3.7 installs versions up to v8.9.3, Alpine 3.8 installs versions up to v8.14.0, Alpine 3.9 installs versions up to v10.19.0, Alpine 3.10 installs versions up to v10.24.1, Alpine 3.11 installs versions up to v12.22.6, Alpine 3.12 installs versions up to v12.22.12, Alpine 3.13 & 3.14 install versions up to v14.20.0, Alpine 3.15 & 3.16 install versions up to v16.16.0 (These are all versions on the main branch). Alpine 3.5 - 3.12 required the package python2 to build NodeJS, as they are older versions to build. Alpine 3.13+ requires python3 to successfully build newer NodeJS versions, but you can use python2 with Alpine 3.13+ if you need to build versions of node supported in Alpine 3.5 - 3.15, you just need to specify what version of NodeJS you need to install in the package install script.
The Node project has some desire but no concrete plans (due to the overheads of building, testing and support) to offer Alpine-compatible binaries.
As a potential alternative, @mhart (a Node contributor) has some Docker images for Alpine Linux with Node and optionally, npm, pre-installed.
Uninstalling / Removal
Manual Uninstall
To remove nvm manually, execute the following:
First, use nvm unload to remove the nvm command from your terminal session and delete the installation directory:
|
|
Edit ~/.bashrc (or other shell resource config) and remove the lines below:
|
|
Docker For Development Environment
To make the development and testing work easier, we have a Dockerfile for development usage, which is based on Ubuntu 18.04 base image, prepared with essential and useful tools for nvm development, to build the docker image of the environment, run the docker command at the root of nvm repository:
|
|
This will package your current nvm repository with our pre-defined development environment into a docker image named nvm-dev, once itâs built with success, validate your image via docker images:
|
|
If you got no error message, now you can easily involve in:
|
|
Please note that itâll take about 8 minutes to build the image and the image size would be about 650MB, so itâs not suitable for production usage.
For more information and documentation about docker, please refer to its official website:
Problems
-
If you try to install a node version and the installation fails, be sure to run
nvm cache clearto delete cached node downloads, or you might get an error like the following:curl: (33) HTTP server doesnât seem to support byte ranges. Cannot resume.
-
Whereâs my
sudo node? Check out #43 -
After the v0.8.6 release of node, nvm tries to install from binary packages. But in some systems, the official binary packages donât work due to incompatibility of shared libs. In such cases, use
-soption to force install from source:
|
|
- If setting the
defaultalias does not establish the node version in new shells (i.e.nvm currentyieldssystem), ensure that the systemâs nodePATHis set before thenvm.shsource line in your shell profile (see #658)
macOS Troubleshooting
nvm node version not found in vim shell
If you set node version to a version other than your system node version nvm use 6.2.1 and open vim and run :!node -v you should see v6.2.1 if you see your system version v0.12.7. You need to run:
|
|
More on this issue in dotphiles/dotzsh.
nvm is not compatible with the npm config âprefixâ option
Some solutions for this issue can be found here
There is one more edge case causing this issue, and thatâs a mismatch between the $HOME path and the userâs home directoryâs actual name.
You have to make sure that the user directory name in $HOME and the user directory name youâd see from running ls /Users/ are capitalized the same way (See this issue).
To change the user directory and/or account name follow the instructions here
Homebrew makes zsh directories unsecure
|
|
Homebrew causes insecure directories like /usr/local/share/zsh/site-functions and /usr/local/share/zsh. This is not an nvm problem - it is a homebrew problem. Refer here for some solutions related to the issue.
Macs with Apple Silicon chips
Experimental support for the Apple Silicon chip architecture was added in node.js v15.3 and full support was added in v16.0. Because of this, if you try to install older versions of node as usual, you will probably experience either compilation errors when installing node or out-of-memory errors while running your code.
So, if you want to run a version prior to v16.0 on an Apple Silicon Mac, it may be best to compile node targeting the x86_64 Intel architecture so that Rosetta 2 can translate the x86_64 processor instructions to ARM-based Apple Silicon instructions.
Hereâs what you will need to do:
-
Install Rosetta, if you havenât already done so
1$ softwareupdate --install-rosettaYou might wonder, âhow will my Apple Silicon Mac know to use Rosetta for a version of node compiled for an Intel chip?â. If an executable contains only Intel instructions, macOS will automatically use Rosetta to translate the instructions.
-
Open a shell thatâs running using Rosetta
1$ arch -x86_64 zshNote: This same thing can also be accomplished by finding the Terminal or iTerm App in Finder, right clicking, selecting âGet Infoâ, and then checking the box labeled âOpen using Rosettaâ.
Note: This terminal session is now running in
zsh. Ifzshis not the shell you typically use,nvmmay not besourceâd automatically like it probably is for your usual shell through your dotfiles. If thatâs the case, make sure to sourcenvm.1$ source "${NVM_DIR}/nvm.sh" -
Install whatever older version of node you are interested in. Letâs use 12.22.1 as an example. This will fetch the node source code and compile it, which will take several minutes.
1$ nvm install v12.22.1 --shared-zlibNote: Youâre probably curious why
--shared-zlibis included. Thereâs a bug in recent versions of Appleâs systemclangcompiler. If one of these broken versions is installed on your system, the above step will likely still succeed even if you didnât include the--shared-zlibflag. However, later, when you attempt tonpm installsomething using your old version of node.js, you will seeincorrect data checkerrors. If you want to avoid the possible hassle of dealing with this, include that flag. For more details, see this issue and this comment -
Exit back to your native shell.
1 2 3$ exit $ arch arm64Note: If you selected the box labeled âOpen using Rosettaâ rather than running the CLI command in the second step, you will see
i386here. Unless you have another reason to have that box selected, you can deselect it now. -
Check to make sure the architecture is correct.
x64is the abbreviation forx86_64, which is what you want to see.1 2$ node -p process.arch x64
Now you should be able to use node as usual.
WSL Troubleshooting
If youâve encountered this error on WSL-2:
|
|
It may be due to your antivirus, VPN, or other reasons.
Where you can ping 8.8.8.8 while you canât ping google.com
This could simply be solved by running this in your root directory:
|
|
This deletes your resolv.conf file that is automatically generated when you run WSL, creates a new file and puts nameserver 8.8.8.8, then creates a wsl.conf file and adds [network] and generateResolveConf = false to prevent auto-generation of that file.
You can check the contents of the file by running:
|
|
Maintainers
Currently, the sole maintainer is @ljharb - more maintainers are quite welcome, and we hope to add folks to the team over time. Governance will be re-evaluated as the project evolves.
Project Support
Only the latest version (v0.40.3 at this time) is supported.
Enterprise Support
If you are unable to update to the latest version of nvm, our partners provide commercial security fixes for all unsupported versions:
License
See LICENSE.md.
Copyright notice
Copyright OpenJS Foundation and nvm contributors. All rights reserved. The OpenJS Foundation has registered trademarks and uses trademarks. For a list of trademarks of the OpenJS Foundation, please see our Trademark Policy and Trademark List. Trademarks and logos not indicated on the list of OpenJS Foundation trademarks are trademarksâą or registeredÂź trademarks of their respective holders. Use of them does not imply any affiliation with or endorsement by them.
The OpenJS Foundation | Terms of Use | Privacy Policy | Bylaws | Code of Conduct | Trademark Policy | Trademark List | Cookie Policy