You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes nvm use {version} will point to wrong version.
> nvm use 18
Now using Node v23.5.0 (npm 10.9.2) /opt/homebrew/Cellar/node/23.5.0/bin/node
in this case, despite running nvm use 18, nvm wrongly points to node 23.
> nvm use 18
Now using Node v23.5.0 (npm 10.9.2) /opt/homebrew/Cellar/node/23.5.0/bin/node
> nvm use 23
Now using Node v23.3.0 (npm 10.9.0) ~/.local/share/nvm/v23.3.0/bin/node
> nvm use 18
Now using Node v18.12.1 (npm 8.19.2) ~/.local/share/nvm/v18.12.1/bin/nod
this can be workaround by switching to a different version then setting desired version.
System information
$ nvm --version
nvm, version 2.2.16
$ fish --version
fish, version 3.7.1
$ cat .nvmrc
18.12.1
The text was updated successfully, but these errors were encountered:
Problem
Sometimes
nvm use {version}
will point to wrong version.in this case, despite running
nvm use 18
, nvm wrongly points to node 23.this can be workaround by switching to a different version then setting desired version.
System information
The text was updated successfully, but these errors were encountered: