i try to install signalr from my vs2010 ide like this way but got this error
PM> Install-Package Microsoft.AspNet.SignalR
'Microsoft.AspNet.SignalR.JS (≥ 2.1.2)' not installed. Attempting to retrieve dependency from source...
Done.
Install-Package : The schema version of 'Microsoft.AspNet.SignalR.JS' is incompatible with version 1.2.20325.9034 of NuGet. Please upgrade NuGet to the latest version from http://
go.microsoft.com/fwlink/?LinkId=213942.
At line:1 char:16
+ Install-Package <<<< Microsoft.AspNet.SignalR
+ CategoryInfo : NotSpecified: (:) [Install-Package], InvalidOperationException
+ FullyQualifiedErrorId : NuGetCmdletUnhandledException,NuGet.PowerShell.Commands.InstallPackageCommand
i install the nuget package again and issued this command at package manager console and got this error
install-package Microsoft.AspNet.SignalR -Version 1.1.3
The source at nuget.org [https://www.nuget.org/api/v2/] is unreachable. Falling back to NuGet Local Cache at C:\Users\TRIDIP\AppData\Local\NuGet\Cache
Install-Package : Unable to find version '1.1.3' of package 'Microsoft.AspNet.SignalR'.
At line:1 char:16
+ install-package <<<< Microsoft.AspNet.SignalR -Version 1.1.3
+ CategoryInfo : NotSpecified: (:) [Install-Package], InvalidOperationException
+ FullyQualifiedErrorId : NuGetCmdletUnhandledException,NuGet.PowerShell.Commands.InstallPackageCommand
how to fix it?