exmyth

 

Sublime Text 安装插件报错:

Package Control

Unable to download XXX. Please view the console for more details.

 

解决方法:

Preferences 》Package Settings 》 Package Control 》 Settings - User

 
image

 

增加如下内容:

"debug": true,
"downloader_precedence":
{
    "linux": [ "curl", "urllib", "wget" ],
    "osx": [ "curl", "urllib" ],
    "windows": [ "wininet" ]
},

最终内容如下:

{
    "bootstrapped": true,
    "debug": true,
    "installed_packages":
    [
        "Package Control"
    ],
    "downloader_precedence":
    {
        "linux": [ "curl", "urllib",    "wget" ],
        "osx": [ "curl", "urllib" ],
        "windows": [ "wininet" ]
    },
}

再次安装插件就没问题了。


鸣谢:

Sublime安装及解决There are no packages available for installation
Mac sublime 安装包的时候出现 unable to download xxx
CERTIFICATE_VERIFY_FAILED on macOS Sierra Beta



作者:v1coder
链接:https://www.jianshu.com/p/ebf3f39b37ca
来源:简书
简书著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2021-10-25
  • 2021-12-10
  • 2022-12-23
  • 2021-09-04
  • 2022-12-23
  • 2021-11-28
  • 2021-10-05
猜你喜欢
  • 2021-11-30
  • 2022-12-23
  • 2022-02-06
  • 2022-12-23
  • 2021-10-18
  • 2022-02-25
  • 2022-01-14
相关资源
相似解决方案