我收到以下错误,当我尝试加载nget:无法加载的NuGet饲料在Visual Studio
Unable to load the service index for source https://api.nuget.org/v3/index.json . The ServicePointManager does not support proxies with the https scheme.
此外,在Linqpad,我得到一个类似的错误:
ServicePointManager does not support proxies with the https scheme
不任何人有任何解决方案?我发现this后,但解决方案,清除临时文件夹,没有解决我的问题。请帮忙!谢谢!
当您打开包管理器控制台时,它表示正在运行哪个版本? VS2017? – OzBob
%appdata%\ Microsoft \ AppEnv \ 14.0 \ ActivityLog.xml中的更多信息 – OzBob
您的计算机上配置了代理吗?或者在环境变量中配置“http_proxy”变量?如果NuGet存在,NuGet会首先查看它们。如果这些代理环境变量以https开头,则NuGet将失败。您可以尝试删除配置的代理来检查它是否正常工作.https://blogs.msdn.microsoft.com/jpsanders/2007/04/25/the-servicepointmanager-does-not-support-proxies-of-https -scheme-net-1-1-sp1 /或者您可以将代理设置添加到Nuget.Config文件中,http://skolima.blogspot.sg/2012/07/nuget-proxy-settings.html。 –