반응형
There are 3 solutions for nvm errors in Windows environment.
- Install using scoop
- Check install path
- Run as administrator
Install using scoop
I don't know what the problem is, I just want to fix it.
Then reinstall with scoop.
Do the 3 steps below
1. Open "Windows PowerShell
2. Install "Scoop" using command
Set-ExecutionPolicy RemoteSigned -scope CurrentUser
$env:SCOOP = 'C:\Scoop'
iex (new-object net.webclient).downloadstring('https://get.scoop.sh')
3. Install "nvm" using command
scoop install nvm
nvm install latest
// or nvm install lts
// or nvm install 16.11.1 (version)
Check install path
Spaces or special characters in the path can be a problem.
Run as administrator
If it's a permissions issue, not an installation issue.
반응형
'개발 > Node js' 카테고리의 다른 글
express js post body undefined (2) | 2021.10.23 |
---|---|
웹서버 빨리 만들기 - Express js (2) | 2021.10.18 |
윈도우 node js 명령어로 설치 (2) | 2021.10.18 |
NVM status 에러 해결 방법 (6) | 2021.10.17 |
[Node js]웹 크롤러 만들기3(번외)-데이터 시각화(워드 클라우드) D3 Cloud (0) | 2021.10.11 |