sublime text 打开总是弹框报错Unable to download XXX. Please view the console for more details.解决办法

Preferences 》Package Settings 》 Package Control 》 Settings - User

 

添加代码

 

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

添加完成后代码

{
	"bootstrapped": true,
	"channels":
	[
		"http://packagecontrol.cn/channel_v3.json"
	],
	"debug": true,
	"downloader_precedence":
	{
		"linux":
		[
			"curl",
			"urllib",
			"wget"
		],
		"osx":
		[
			"curl",
			"urllib"
		],
		"windows":
		[
			"wininet"
		]
	},
	"in_process_packages":
	[
	],
	"installed_packages":
	[
		
	]
}

 

你可能感兴趣的:(sublime text 打开总是弹框报错Unable to download XXX. Please view the console for more details.解决办法)