Windows
NVM For Non-Admin User
Install NVM for Non-Admin user for windows 11
Ref: https://github.com/jchip/nvm#installing-windows-nvm-using-powershell
- Open PowerShell with Run as Administrator
- run
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned
- Type Y and press enter
- Close powershell
- Open powershell as non-admin user
- Run
cd $Env:USERPROFILE;
Invoke-WebRequest https://raw.githubusercontent.com/jchip/nvm/v1.5.5/install.ps1 -OutFile install.ps1;
.\install.ps1 -nvmhome $Env:USERPROFILE\nvm;
del install.ps1