Installation of certificate in pip

מתוך ויקי נטפרי
קפיצה לניווט קפיצה לחיפוש

לעברית לחצו כאן

To switch from edit view to read view

To search in the Wiki

Home page > Security certificate > Installation of certificate in pip ‎‎

In window, If you have the security certificate installation software installed, you can run this command:

pip config set global.cert "C:\ProgramData\NetFree\CA\netfree-ca-bundle-curl.crt"

In linux, If you installed the certificate according to the instructions here], you can run this command:

pip config set global.cert /usr/lib/ssl/certs/ca-certificates.crt


Another method

Create or edit this file:

%AppData%\pip\pip.ini


Add the following lines:

[global]
cert = C:\ProgramData\NetFree\CA\netfree-ca-bundle-curl.crt

And in linux according to the above address.


NOTE: The above is correct for Windows if you have installed Security Certificate Software or Linux systems and have been installed Certificate as instructed here.


In other cases, the certificate must be downloaded to the computer from here, extract, and run the command with the path change depending on where you saved the file on your computer.


One-time run

To run any command only one-time run with these certificates without changes to the computer, you can add this parameter to the command:

--cert %programdata%\NetFree\CA\netfree-ca-bundle-curl.crt

And in linux:

--cert /usr/lib/ssl/certs/ca-certificates.crt


External links

More options and discussion in stackoverflow.com

The pip documentation site