pycharm报错:
无法加载文件 E:\LingLingWannaBe\test\venv\Scripts\activate.ps1,因为在此系统上禁止运行脚本。有关详细信息,请参阅 https:/go.mi
crosoft.com/fwlink/?LinkID=135170 中的 about_Execution_Policies。
+ CategoryInfo : SecurityError: ( ,ParentContainsErrorRecordException
+ FullyQualifiedErrorId : UnauthorizedAccess
PS E:\LingLingWannaBe\test> set-ExecutionPolicy RemoteSigned
set-ExecutionPolicy : 对注册表项“HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PowerShell\1\ShellIds\Microsoft.PowerShell”的访问被
拒绝。 要更改默认(LocalMachine)作用域的执行策略,请使用“以管理员身份运行”选项启动 Windows PowerShell。要更改当前用户的执行
策略,请运行 “Set-ExecutionPolicy -Scope CurrentUser”。
所在位置 行:1 字符: 1
- set-ExecutionPolicy RemoteSigned
-
+ CategoryInfo : PermissionDenied: (:) [Set-ExecutionPolicy], UnauthorizedAccessException + FullyQualifiedErrorId : System.UnauthorizedAccessException,Microsoft.PowerShell.Commands.SetExecutionPolicyCommand
解决方案如下:
搜索框里搜索powershell,并右键以管理员身份运行。
输入:
set-executionpolicy remotesigned
然后输入“Y”,即选择可以执行脚本即可。
参考连接: