Sublime Text 解决 Unable to download XXX 问题

Sublime Text 安装插件报错:

Package Control

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

 

解决方法:

Preferences 》Package Settings 》 Package Control 》 Settings - User

Sublime Text 解决 Unable to download XXX 问题_第1张图片

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报错)