使用 NuGet 下载 WebActivator 时出错

发布于 2024-12-17 04:12:52 字数 513 浏览 0 评论 0 原文

我刚刚在公司计算机上更新了 NuGet 包管理器。自从更新后,我无法添加任何包。例如,我尝试安装 WebActivator 并收到以下错误:

PM> Install-Package WebActivator
Install-Package : The ServicePointManager does not support proxies with the https scheme.
At line:1 char:16
+ Install-Package <<<<  WebActivator
    + CategoryInfo          : NotSpecified: (:) [Install-Package], NotSupportedException
    + FullyQualifiedErrorId : NuGetCmdletUnhandledException,NuGet.PowerShell.Commands.InstallPackageCommand

我该如何解决这个问题?

I just updated my NuGet Package Manager on my corporate machine. Ever since the update, I am unable to add any package. I tried to install WebActivator for instance and got the following error:

PM> Install-Package WebActivator
Install-Package : The ServicePointManager does not support proxies with the https scheme.
At line:1 char:16
+ Install-Package <<<<  WebActivator
    + CategoryInfo          : NotSpecified: (:) [Install-Package], NotSupportedException
    + FullyQualifiedErrorId : NuGetCmdletUnhandledException,NuGet.PowerShell.Commands.InstallPackageCommand

How can I go about this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

机场等船 2024-12-24 04:12:52

以下解决方法对我有帮助。请注意,我使用的是 Windows 7、Visual Studio 2010 Professional、IE 9,并且使用公司代理。您的步骤可能会有所不同,具体取决于您的环境:

  1. 转至 C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE
  2. 打开 devenv.exe.config 进行编辑。
  3. 在 System.Net 节点中添加下面给出的代码。
  4. 关闭 Visual Studio 并重新打开它。
  5. 检查是否显示 RSS 源。如果是,那么包括 Nuget 在内的其他所有内容都应该可以工作。
  6. 如果 RSS 提要部分提示输入密码,请提供密码并保存。
  7. 如果仍然无法正常工作,请运行 fiddler 并再次执行步骤 4 到 6。 (在某些情况下,仅在后台运行 Fiddler 也有帮助。请参阅下面的链接。)

放入 devenv.exe.config 中的代码:

<defaultProxy useDefaultCredentials="true" enabled="true">
    <proxy proxyaddress="http://ProxyServer:8080"/>
</defaultProxy>

这实际上是基于以下两个讨论的 hack,但它有效。

希望这可以帮助其他有类似问题的人。但我真的希望有更好的方法。对代理服务器和端口进行硬编码似乎不是一个非常易于维护的解决方案。此外,应该有一种使用 NuGet 包(如 WebActivator 和 Nuget.MVC3)的替代方法。

The following work around helped me. Note that I am using Windows 7, Visual Studio 2010 Professional, IE 9 and am behind a corporate proxy. Your steps might vary depending on your environment:

  1. Go to C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE
  2. Open the devenv.exe.config for editing.
  3. In the System.Net node add the code given below.
  4. Close Visual Studio and reopen it.
  5. Check if the RSS feeds are displaying. If yes, everything else including Nuget should also work.
  6. If RSS feeds section is prompting for password, then provide it and save it.
  7. If things don't work still, run fiddler and go through steps 4 to 6 again. (Just running Fiddler in background also helps in some cases. See link below.)

Code to put in devenv.exe.config:

<defaultProxy useDefaultCredentials="true" enabled="true">
    <proxy proxyaddress="http://ProxyServer:8080"/>
</defaultProxy>

This is really a hack based upon the following two discussions, but it works.

Hope this helps others who have similar issues. But I really wish there is a better way around. Hardcoding the proxy server and port doesn't seem to be a very maintainable solution. Also, there should be an alternative way of using NuGet packages like WebActivator and Nuget.MVC3.

哀由 2024-12-24 04:12:52

作为备份,如果您的代理仅是 HTTPS,您可以按照以下位置的包下载说明进行操作:
没有 nuget 包管理器的 Nuget 包? 然后是安装说明:
如何在本地安装 Nuget 包 .nupkg 文件?

As a backup if your proxy is HTTPS only, you can follow the package download instructions from:
Nuget packages without nuget package manager? and then the installation instructions from:
How to install a Nuget Package .nupkg file locally?.

悲欢浪云 2024-12-24 04:12:52

我并不支持公司代理,因此错误消息对我来说完全没有意义。不过,有帮助的是替换默认的 NuGet 包源。我通过以下方式做到了这一点:

  1. 进入 NuGet 设置并添加指向 http://nuget.org/api/v2/ 的新包源(方案中没有 s
  2. 禁用默认源
  3. 启用我新添加的源

现在,我不再收到错误消息。瞧!

I'm not behind a corporate proxy, so the error message made absolutely no sense to me. What helped, though, was to replace the default NuGet package source. I did this by:

  1. Going into NuGet settings and adding a new package source pointing to http://nuget.org/api/v2/ (no s in the scheme)
  2. Disabled the default source
  3. Enabled my newly added source

Now, I don't get the error message anymore. Et voilà!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文