-
이 시스템에서 스크립트를 실행할 수 없으므로 C:\Users\...\.ps1 파일을 로드할 수 없습니다. 자세한 내용은 about_Execution_Policies(https://go.microsoft.com/fwlink/?LinkID=135170)를 참조하십시오.Programing/기타 오류 해결 2022. 4. 26. 23:00반응형
Windows PowerShell Copyright (C) Microsoft Corporation. All rights reserved. 새로운 크로스 플랫폼 PowerShell 사용 https://aka.ms/pscore6 이 시스템에서 스크립트를 실행할 수 없으므로 C:\Users\user\Documents\Python_Scripts\kivy_appliciation\kivy_venv\ Scripts\activate.ps1 파일을 로드할 수 없습니다. 자세한 내용은 about_Execution_Policies(https://go.microsoft.com /fwlink/?LinkID=135170)를 참조하십시오. + CategoryInfo : 보안 오류: (:) [], ParentContainsErrorRecordException + FullyQualifiedErrorId : UnauthorizedAccess
뭘 잘 못 만졌는지 pycharm 실행시 터미널(Windows PowerShell)에서 위와 같은 오류가 발생했습니다.
위와 같은 오류 실행정책범위에 의한것으로, Windows PowerShell에서 해결할 수 있습니다.
1. Windows PowerShell을 관리자 권한으로 열어줍니다.
2. 실행규칙을 변경합니다.
먼저 확인을 위해 아래의 코드를 입력합니다.
> Get-ExecutionPolicy
이때 Restricted라고 뜨면, 실행규칙을 변경해줘야합니다.
아래의 코드로 실행규칙을 RemoteSigned로 변경가능합니다.
> Set-ExecutionPolicy RemoteSigned 변경하시겠습니까? : Y
반응형'Programing > 기타 오류 해결' 카테고리의 다른 글
[MySQL] Could not connect, server may not be running. 그런데 관리도구 서비스에 MySQL이 없는 경우 (0) 2022.11.08 Unknown table 'COLUMN_STATISTICS' in information_schema (1109) (1) 2022.09.22 error: legacy-install-failure (0) 2022.09.06 Windows에서 Ubuntu 원격 접속하기 (Black Screen 에러 해결) (0) 2022.08.30 Jupyter Notebook kernel error (ImportError: DLL load failed: 지정된 모듈을 찾을 수 없습니다.) (0) 2022.07.29