Heroku 不会在 Visual Studio 代码内加载
Heroku won't load within Visual Studio Code
heroku : File C:\Users\mar\AppData\Roaming\npm\heroku.ps1 cannot be loaded. The file C:\Users\mar\AppData\Roaming\npm\heroku.ps1 is not digitally
signed. You cannot run this script on the current system. For more information about running scripts and setting execution policy, see
about_Execution_Policies at https:/go.microsoft.com/fwlink/?LinkID=135170.
这是我遇到的错误。我已经在 cmd 中尝试 运行ning “heroku -v”,它在那里工作,所以我知道它安装正确。但是,当我 运行 在 visual studio 中执行相同的命令时,出现上述错误。我在管理模式下 运行ning visual studio 代码,我也在管理模式下安装了 heroku。
我还在我的电脑设置中启用了开发者模式。
无论您是否运行处于管理员模式,您都需要为 PowerShell 设置执行策略。
您可以阅读更多相关内容here
您还可以看到它在执行策略方面引发错误。该错误基本上意味着 windows 无法验证创建脚本的用户的身份,并阻止您 运行 使用它,因为它可能有害(基于它无法验证脚本的事实)文件创建者的身份)。
这只是防止恶意脚本自动 运行 的反制措施。
如果你想要运行脚本我建议运行ning
Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy Unrestricted
然后 运行 执行 Heroku 命令。上面的脚本删除了对当前登录用户执行脚本的限制。
heroku : File C:\Users\mar\AppData\Roaming\npm\heroku.ps1 cannot be loaded. The file C:\Users\mar\AppData\Roaming\npm\heroku.ps1 is not digitally
signed. You cannot run this script on the current system. For more information about running scripts and setting execution policy, see
about_Execution_Policies at https:/go.microsoft.com/fwlink/?LinkID=135170.
这是我遇到的错误。我已经在 cmd 中尝试 运行ning “heroku -v”,它在那里工作,所以我知道它安装正确。但是,当我 运行 在 visual studio 中执行相同的命令时,出现上述错误。我在管理模式下 运行ning visual studio 代码,我也在管理模式下安装了 heroku。
我还在我的电脑设置中启用了开发者模式。
无论您是否运行处于管理员模式,您都需要为 PowerShell 设置执行策略。
您可以阅读更多相关内容here
您还可以看到它在执行策略方面引发错误。该错误基本上意味着 windows 无法验证创建脚本的用户的身份,并阻止您 运行 使用它,因为它可能有害(基于它无法验证脚本的事实)文件创建者的身份)。
这只是防止恶意脚本自动 运行 的反制措施。
如果你想要运行脚本我建议运行ning
Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy Unrestricted
然后 运行 执行 Heroku 命令。上面的脚本删除了对当前登录用户执行脚本的限制。