2

我正在尝试在我的 Mac os x 山狮上的 monodevelop 中打开一个 Windows 编译的 c# 解决方案,并且该解决方案中包含 nuget 包。

当我尝试编译时,出现以下错误:

var/folders/bk/sqxq4pw50lsb807cw8x865gc0000gn/T/tmp4586d973.tmp: 
line 1: wget: command not found
/Users/(my name)/Downloads/SteamBot-master/.nuget/NuGet.targets: 
error : Command 'mozroots --import 
--sync;wget -O '/Users/(my name)/Downloads/SteamBot-master/.nuget/NuGet.exe'https://nuget.org/nuget.exe' 
exited with code: 127.
Task "Exec" execution -- FAILED

我应该怎么做才能让它工作?

4

1 回答 1

3
line 1: wget: command not found

该错误是关于“wget”不存在的。OS-X 没有开箱即用的 'wget' (它有curl)。

使用自制软件(我的最爱):

> brew install wget

或使用MacPorts

> sudo port wget

或者从源手动安装

在您可以执行 'which wget' 或 'wget --version' 并获得有效回复后,再次尝试构建您的项目。

于 2015-06-28T21:44:14.947 回答