Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Install-Package : Unable to find package 'WebActivator'

I have Visual Studio 2012 Express for Web. My Steps -Create a New ASP .NET MVC 4 application -choose basic template -go to Package Manager Console -try to install WebActivator

PM> Install-Package WebActivator

and i get the following error enter image description here

How i can resolve this and install WebActivator package?

like image 899
isxaker Avatar asked Aug 05 '13 13:08

isxaker


3 Answers

In my case, I could not install any package and got a similar error. The issue was solved as I unchecked the "Microsoft and .NET" under "Machine-wide package source":

enter image description here

I hope this can be help someone.

like image 79
Fayssal El Mofatiche Avatar answered Nov 03 '22 03:11

Fayssal El Mofatiche


So easy

https://www.nuget.org/packages/WebActivator

Need point version of webActivator!!!

PM> Install-Package WebActivator -Version 1.5.3 
like image 25
isxaker Avatar answered Nov 03 '22 02:11

isxaker


I got a similar problem with another package in Visual Studio 2013, I cleared the NuGet package cache with the option "Clear Package Cache" and it works now.

enter image description here

like image 16
Gabriel Avatar answered Nov 03 '22 03:11

Gabriel