how to do this step can anyone will help me? the step mentioned below.
- Create a file named Package Control.user-ca-bundle and paste in a PEM-formatted version of the certificate
how to do this step can anyone will help me? the step mentioned below.
Package Control: User CA bundle
A PEM cert looks like …
-----BEGIN CERTIFICATE-----
some base62 encoded stuff
-----END CERTIFICATE-----
But from where should I get the certificate .Because the error showing in that command palette that:
"Package Control: Error downloading channel. HTTP exception InvalidCertificateException (Host packagecontrol.io returned an invalid certificate ([SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:548))) downloading https://packagecontrol.io/channel_v3.json."
If you are not a victim of a man-in-the-middle attack, the most likely reason for such verification failures is a network security appliance breaking up any encrypted connection, which breaks its trust chain.
What you need is the public CA certificate used to sign any re-encrypted connection, so Package Control can trust the modified trust-chain.
In corporate networks it is common to have such security systems, but those should also deploy required CA certificates to all end-points. Otherwise those wouldn’t be able to establish any HTTPS/TLS connecttion without being faced with certificate errors.
In case you are using a HTTPS proxy, you need to add its public key or a CA certificate used to sign it.
There is no general answer to the question of where to get it.
Sorry, are you lying?
control + shift + p
open the plate then input User CA bundle
and you will found nothing.
Maybe the package control you used is modified by your self. It is not a common official version.
If you don’t see that entry, you probably using an out-dated version.
The Command Palette entry exists as of v4.0.2
NOTE: Remember to make sure to EXIT Sublime Text after making changes to settings. And, restart. Otherwise, the changes will not take effect.
For some reason my “Package Control” was listed under the “ignored packages” list in Sublime Text settings.
IF YOU CAN’T FIND PACKAGE CONTROL IN SUBLIME TEXT 3 TRY THIS:
ALSO, for some reason my “Package Control” was listed under in in Sublime Text Settings. I was able to find and removed it from the "ignored_packages:
list like this:
<code>
//
"ignored_packages":
[
"Package Control",
"[Other Ignored Package Names]",
],
</code>
<code>
"ignored_packages":
[
"[Other Ignored Package Names]",
],
</code>
Somehow, I was able to install packages after this with:
Ctrl + Shift + P
-> Opens a search bar