I am not able to install any package by Nuget. For example when I want install entity framework I receive following error:
install-package EntityFramework
Su
In my case, specifying the desidered version has solved the problem. That's probably because different projects in the same solution reference different version of the same Package. In that case, Nuget doesn't know the desidered version, hence the exception.
Just use this syntax:
Install-Package XXXX -Version A.B.C.D
After updating my Visual Studio 2015 nuget stopped working.
After reading the posted solutions I founded that's a know bug, see http://blog.nuget.org/20150226/nuget-3.0-beta2.html
From Visual Studio I unistalled nuget extension, closed visual studio , downloaded and installed latest nuget version from https://dist.nuget.org/index.html
It worked