nvm-windows
nvm-windows copied to clipboard
`nvm install x.y.z 32`: should inform the user to run `nvm use x.y.z 32`
My Environment
- [X ] Windows 7 or below (not truly supported due to EOL)
- [ ] Windows 8
- [ ] Windows 8.1
- [ ] Windows 10
- [ ] Windows 10 IoT Core
- [ ] Windows Server 2012
- [ ] Windows Server 2012 R2
- [ ] Windows Server 2016
- [ ] My Windows installation is non-English.
I have already...
- [X] read the README to be aware of npm gotchas & antivirus issues.
- [X] reviewed the wiki to make sure my issue hasn't already been resolved.
- [X] verified I'm using an account with administrative privileges.
- [X] searched the issues (open and closed) to make sure this isn't a duplicate.
- [X] made sure this isn't a question about how to use NVM for Windows, since gitter is used for questions and comments.
My issue is related to (check only those which apply):
- [ ] settings.txt
- [ ] proxy support
- [X] 32 or 64 bit support
Expected Behavior
nvm install 4.4.3 32
told me at the end that I should run nvm use 4.4.3
which is incorrect.
It should say nvm use 4.4.3 32
.
Actual Behavior
Here's the log ...
$ nvm install 4.4.3 32
Downloading node.js version 4.4.3 (32-bit)... Complete
Creating C:\nvm\temp
Downloading npm version 2.15.1... Complete
Installing npm v2.15.1...
Installation complete. If you want to use this version, type
nvm use 4.4.3
$ nvm use 4.4.3
node v4.4.3 (64-bit) is not installed.
$ node -v
v4.3.2
$ nvm use 4.4.3 32
Now using node v4.4.3 (32-bit)
$ node -v
v4.4.3
Steps to reproduce the problem:
As above.