I compiled and installed Monodevelop as detailed here:
git clone https://github.com/mono/monodevelop.git
cd monodevelop
./configure --profile=stable
sudo make
sudo make install
Then I created a new MVC3 project and tried to add a package with NuGet. However, any package I try to add, I get an error similar with this one in the Package Console:
Adding Microsoft.Web.Infrastructure... Installing
'Microsoft.Web.Infrastructure 1.0.0.0'. Could not find a part of the path
"/tmp/nuget/bf2agvz5.hwr/lib/net40/Microsoft.Web.Infrastructure.dll".
Example:
Adding Microsoft.AspNet.WebHelpers... Attempting to resolve dependency 'Microsoft.AspNet.WebPages (≥ 3.2.3 && < 3.3.0)'. Attempting to resolve dependency 'Microsoft.Web.Infrastructure (≥ 1.0.0.0)'. Attempting to resolve dependency 'Microsoft.AspNet.Razor (≥ 3.2.3 && < 3.3.0)'. Attempting to resolve dependency 'Microsoft.AspNet.WebPages.WebData (≥ 3.2.3 && < 3.3.0)'. Attempting to resolve dependency 'Microsoft.AspNet.WebPages.Data'. The Microsoft.AspNet.Razor package has a license agreement which is available at http://www.microsoft.com/web/webpi/eula/net_library_eula_ENU.htm Please review this license agreement and remove the package if you do not accept the agreement. Check the package for additional dependencies which may also have license agreements. Using this package and any dependencies constitutes your acceptance of these license agreements. The Microsoft.AspNet.WebPages package has a license agreement which is available at http://www.microsoft.com/web/webpi/eula/net_library_eula_ENU.htm Please review this license agreement and remove the package if you do not accept the agreement. Check the package for additional dependencies which may also have license agreements. Using this package and any dependencies constitutes your acceptance of these license agreements. The Microsoft.AspNet.WebPages.Data package has a license agreement which is available at http://www.microsoft.com/web/webpi/eula/net_library_eula_ENU.htm Please review this license agreement and remove the package if you do not accept the agreement. Check the package for additional dependencies which may also have license agreements. Using this package and any dependencies constitutes your acceptance of these license agreements. The Microsoft.AspNet.WebPages.WebData package has a license agreement which is available at http://www.microsoft.com/web/webpi/eula/net_library_eula_ENU.htm Please review this license agreement and remove the package if you do not accept the agreement. Check the package for additional dependencies which may also have license agreements. Using this package and any dependencies constitutes your acceptance of these license agreements. The Microsoft.AspNet.WebHelpers package has a license agreement which is available at http://www.microsoft.com/web/webpi/eula/net_library_eula_ENU.htm Please review this license agreement and remove the package if you do not accept the agreement. Check the package for additional dependencies which may also have license agreements. Using this package and any dependencies constitutes your acceptance of these license agreements. Installing 'Microsoft.Web.Infrastructure 1.0.0.0'. Could not find a part of the path "/tmp/nuget/bf2agvz5.hwr/lib/net40/Microsoft.Web.Infrastructure.dll".
Or:
Adding Newtonsoft.Json... Newtonsoft.Json Package contains PowerShell scripts which will not be run. Installing 'Newtonsoft.Json 6.0.8'. Could not find a part of the path "/tmp/nuget/3e1zcrod.0p6/lib/net20/Newtonsoft.Json.dll".
Do you have any ideas? I'm using Ubuntu 14.04 and MonoDevelop 6.0.
Thanks