Azure Functions 核心工具安装卡在 visual studio 代码中

Azure functions core tools installation is stuck in visual studio code

我创建了 Azure 函数应用程序来执行 powershell 脚本。想 运行 首先在我的本地进行测试。当我 运行 它时,无论有没有调试选项,都会出现一个弹出窗口,上面写着 - "You must have the azure functions core tools installed to debug your local functions." 当我点击这个弹出窗口上的安装时,它似乎自动启动安装 Azure Functions 核心工具。

但它卡在了一点 - 正在尝试获取“https://functionscdn.azureedge.net/public/3.0.2534/Azure.Functions.Cli.win-x64.3.0.2534.zip

确认我的网络是好的,尝试重新启动 PC 并再次按照步骤操作,但没有成功。

其他观察结果是,即使我使用以下命令使用命令提示符手动安装它,

npm install -g azure-functions-core-tools@3

它仍然说"You must have the azure functions core tools installed to debug your local functions."

参考是 - 你能指导如何进行吗? 谢谢。

进入 Azure Functions Core Tools release page,下载所需版本的 MSI 文件,然后安装即可。

或者您可以下载 zip 文件,将其解压缩,然后将文件夹路径设置为您的环境 路径

我有类似的问题。

npm install -g azure-functions-core-tools@3 它不会将 func 添加到路径。

在路径中添加以下内容解决了问题。

C:\Users\username\AppData\Roaming\npm

在所有这些安装卸载中浪费了一天之后...

关键时刻
要安装允许调试的64位版本,可以使用命令

这里

choco 安装 azure-functions-core-tools-3 --params="'/x64:true'"

BAM 工作 我可以在 visual studio 代码中调试

https://chocolatey.org/packages/azure-functions-core-tools-3#install

第一条评论 感谢 Tyler Doerksen 的救命稻草!!!!