Sublime Text Unable to download XXX solve the problem

 

Sublime Text plugin installation error:

Package Control

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

 

Solution:

Preferences 》Package Settings 》 Package Control 》 Settings - User

 
image

 

Add the following:

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

The final reads as follows:

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

Plug up again no problem.


Acknowledgments:

Sublime installation and solve the Available Packages Standard Package for NO are There Installation
Mac Sublime when the installation package to download xxx appears Unable
CERTIFICATE_VERIFY_FAILED ON macOS the Sierra Beta



Author: v1coder
link: https: //www.jianshu.com/p/ebf3f39b37ca
Source: Jane book
Jane book copyright reserved by the authors, are reproduced in any form, please contact the author to obtain authorization and indicate the source.

Guess you like

Origin www.cnblogs.com/exmyth/p/11343830.html