如何在Mac osx上运行nuget

时间:2015-06-28 18:43:13

标签: c# mono steambot

我试图在我的Mac os x mountain lion上的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

我该怎么做才能让它发挥作用?

1 个答案:

答案 0 :(得分:3)

line 1: wget: command not found

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

使用homebrew(我的收藏):

> brew install wget

或使用MacPorts

> sudo port wget

或从source

手动安装

在您执行'which wget'或'wget --version'并获得有效回复后,请尝试重新构建项目。