본문 바로가기

Dev/Javascript

[nodejs] npm : 이 시스템에서 스크립트를 실행할 수 없으므로 C:\Program Files\nodejs\npm.ps1 파일을 로드할 수 없습니다.

728x90

  nodejs 환경 세팅 중 다음과 같은 권한 오류를 만난다면

npm : 이 시스템에서 스크립트를 실행할 수 없으므로 C:\Program Files\nodejs\npm.ps1 파일을 로드할 수 없습니다. 자세한 내용은 about_Execution_Policies(https://go.microsoft.com/ 
fwlink/?LinkID=135170)를 참조하십시오.
위치 줄:1 문자:1
+ npm init
+ ~~~
    + CategoryInfo          : 보안 오류: (:) [], PSSecurityException
    + FullyQualifiedErrorId : UnauthorizedAccess

 

 

아래와 같이 실행 정책 변경

 

PS C:\Dev\nodejs> Set-ExecutionPolicy RemoteSigned
PS C:\Dev\nodejs> Get-ExecutionPolicy
RemoteSigned
PS C:\Dev\nodejs> npm init
This utility will walk you through creating a package.json file.
It only covers the most common items, and tries to guess sensible defaults.

See `npm help init` for definitive documentation on these fields
and exactly what they do.

Use `npm install <pkg>` afterwards to install a package and
save it as a dependency in the package.json file.

Press ^C at any time to quit.
package name: (nodejs)
728x90
반응형