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
반응형
'Dev > Javascript' 카테고리의 다른 글
[git] 커밋하고 푸시 (1) | 2024.11.23 |
---|---|
[git] vscode commit push 무한 로딩 (0) | 2024.11.21 |
[Node.js] DB Daily Check 자동화 (1) 환경 설정 (0) | 2024.11.21 |
[nodejs] vscode git 연동 (0) | 2024.11.21 |
[Node.js] Node.js 기본 개발 환경 세팅 (1) | 2024.11.19 |