Reputation: 4183
Using VS 2013 with NuGet Package Manager installed, I can view all Installed packages, but when I pick Updates or Online, I get an endless busy indicator showing "Retrieving information..."
I've verified I have a good connection. I uninstalled/reinstalled NuGet Package Manager.
Any other suggestions?
Thanks
Upvotes: 28
Views: 30471
Reputation: 21
It works well
Upvotes: 2
Reputation: 1
I faced the same issue, tried different solutions but was unable to resolve the issue. Finally, I tried this method and resolve my problem.
Upvotes: 0
Reputation: 41
The following steps should help:
nuget
websiteEntityFramework
Install-Package EntityFramework -Version 6.4.4
After taking these steps your nuget
will work but only for the current project.Upvotes: 2
Reputation: 631
I'm using VS 2013 and all of suggested solutions has failed. I solved the problem by applying the following method :
[Net.ServicePointManager]::SecurityProtocol = [Net.ServicePointManager]::SecurityProtocol -bOR [Net.SecurityProtocolType]::Tls12
This will change the connection security protocol to nuget as specified in this article: Deprecating TLS 1.0 and 1.1 on NuGet.org
Upvotes: 63
Reputation: 11
its solve my issue.
Upvotes: 1
Reputation: 588
May be it will help someone. My problem was with Nuget Package Manager. I've just updated its version.
To update Nuget Package Manager you need go to the menu under Tools -> Extensions and Updates -> Updates tab -> Visual Studio Gallery.
Upvotes: 8
Reputation: 1262
I came across this problem and it would hang for about an hour at times. How I get round it is go to download a package in the Manage Nuget packager and then right click on your project and click clean. The download pops up within 2 -20 seconds.
Upvotes: 1
Reputation: 89
I encountered the same problem and tried different solutions but none worked! So I am using this workaround.
Cheers.
Upvotes: 5
Reputation: 171
For me it was a problem with NuGet not Visual Studio. The problem turns out to be that NuGet does not like proxy settings of any kind. Running a local proxy debugging tool such as Fiddler will break NuGet! You’ll need to turn them off or uninstall them also ensure that the environment variable HTTP_PROXY is removed from your system settings. Also you will need to check your system proxy settings as well and make sure you are not using a proxy.
This has been documented else where and is the problem for a lot of folks out there!
Upvotes: 4
Reputation: 11
I've noticed this problem once I changed versions of Visual Studio. For whatever reason, the Nuget extension breaks during the installation process even though it seems to be installed in Visual Studio. You basically need to reinstall Nuget, and I had to follow the instructions on this link to get things working again:
Upvotes: 1
Reputation: 519
there is some error in NuGet package manager in VS 2013. It's noticed and fixed by Microsoft, but we are waiting for new update of NuGet.
But there is some more reasons, why you stuck on "Retrieving information". First check your proxy and firewall settings. In my situation, we need to unblock something(it is in my work, so I don't know,what exactly) and after that I saw the updates.
Upvotes: 1