There appears to resolve when Sublime Text 3 installation packages are no packages available for installation problems

 

Installation Package Control Console time, error: There are no packages available for installation ......

 

the reason

The reason for this problem is very simple, is to get the channel Sublime Text 3 addresses can not be accessed.

Profile Address:

Open "Preferences -> Package Settings -> Package Control -> Settings Default" profile, you can see the following passage

 

The following address is not open, do not ask why, we say regardless, we do not dare to ask ....

    // A list of URLs that each contain a JSON file with a list of repositories.
	// The repositories from these channels are placed in order after the
	// repositories from the "repositories" setting
	"channels": [
		"https://packagecontrol.io/channel_v3.json"
	],

 

solution:

In the "Preferences -> Package Settings -> Package Control -> Settings User" to add a new item "channels"

 

Add the following restart. [If there are multiple options, remember separator is a comma (,)]

{
	"channels":
	[
		"https://raw.githubusercontent.com/SuCicada/channel_v3.json/master/channel_v3.json"
	],
}

If the address above can not be accessed, try to change the following:

https://erhan.in/channel_v3.json

 

 

 

verification

Shortcuts: cmd + shift + p to open the console, you can retry.

 

 

 

 

 

 

 

Published 313 original articles · won praise 806 · Views 350,000 +

Guess you like

Origin blog.csdn.net/zhanglong_4444/article/details/104463759