“curl”未被识别为内部或外部命令

‘curl’ 不被识别为内部或外部命令

‘curl’ is not recognized as an internal or external command

curl在没有安装的Windows上运行命令时出现“’curl’不是内部或外部命令、可运行程序或批处理文件”的错误curl

要解决该错误,请curl使用 Chocolatey 安装。

如果你
安装了
Chocolatey

  1. 单击搜索栏并键入 PowerShell。

  2. 右键单击 PowerShell 应用程序,然后单击“以管理员身份运行”。

以管理员身份运行 powershell

  1. 运行以下命令进行安装curl
电源外壳
choco install curl -y
如果您没有安装 Chocolatey,则必须先安装它。

安装 Chocolatey:

  1. 以管理员身份打开 PowerShell。

以管理员身份运行 powershell

  1. 运行以下命令。
电源外壳
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))

Windows安装巧克力

  1. 等待命令完成。
  2. 键入choco以确保已安装 Chocolatey。

Windows 验证已安装巧克力

现在您已经安装了 Chocolatey,运行以下命令来安装
curl.

电源外壳
choco install curl -y

请注意,您的 shell 仍应使用提升的权限运行。

巧克力安装卷曲

现在您应该可以使用该curl命令了。

单击搜索栏,键入“cmd”并启动命令提示符
应用程序。

命令
curl --version

卷曲印刷版

您可以使用以下命令从 Web 服务器获取主页。

命令
curl https://www.example.com/

curl 从网络服务器获取主页

如果需要下载文件,使用-o参数指定输出文件。

命令
curl -o example.html http://www.example.com/

curl 下载网页到文件

额外资源

You can learn more about the related topics by checking out the following
tutorials: