Installation of certificate in pip: הבדלים בין גרסאות בדף

מתוך ויקי נטפרי
קפיצה לניווט קפיצה לחיפוש
מ (fix: use {{he}} for link to hebrew page instead of {{en}} (דרך WP:JWB))
 
(5 גרסאות ביניים של משתמש אחר אחד אינן מוצגות)
שורה 1: שורה 1:
{{עמוד בעברית|התקנת תעודה ב-pip}}  
+
{{he|התקנת תעודה ב-pip}}  
 +
{{Navigation|Security certificate}}
 +
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 [[Installation of certificate in Linux operating system| here]]], you can run this command:
  
<div lang="en" dir="ltr">
+
pip config set global.cert '''/usr/lib/ssl/certs/ca-certificates.crt'''
  
{{קישור אנגלית לתצוגת קריאה}}
 
  
{{Navigation|Security certificate}}
+
=== Another method===
 +
 
 +
Create or edit this file:
  
Download the Security certificate from here http://netfree.link/netfree-ca.crt and save it on the computer.
+
%AppData%\pip\pip.ini
  
  
Now create a text file named pip.ini (in Linux pip.conf) in the folder named pip in this path:
+
Add the following lines:
  
'''''<span dir="ltr">C:\Users\ <users folder> \AppData\Roaming\pip</span>'''''
+
[global]
 +
cert = C:\ProgramData\NetFree\CA\netfree-ca-bundle-curl.crt
  
(If the folder does not exist, create it)
+
And in linux according to the above address.
  
  
Write in the pip.ini file this content:
+
NOTE: The above is correct for Windows if you have installed [[Standard certificate installer| Security Certificate Software]] or Linux systems and have been installed [[Installation of certificate in Linux operating system| Certificate as instructed here]].
  
  
  [global] <br/> cert = C:\netfree-ca.crt
+
In other cases, the certificate must be downloaded to the computer [http://wiki.netfree.link/images/6/61/Netfree-ca-bundle-curl.zip from here], extract, and run the command with the path change depending on where you saved the file on your computer.
  
Instead of the file path (C:/netfree-ca.crt) you should write the path where you saved the Security certificate.
 
  
----
+
===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
  
Alternatively you can cancel the need for a certificate on the source sites of pip by adding the following lines to the above file:
+
And in linux:
  
 +
--cert /usr/lib/ssl/certs/ca-certificates.crt
  
  [global]
 
  trusted-host = pypi.python.org
 
    pypi.org
 
    files.pythonhosted.org
 
  
 
==External links==
 
==External links==
 +
 +
[https://stackoverflow.com/questions/25981703 More options and discussion in stackoverflow.com]
 +
 
[https://pip.pypa.io/en/stable/ The pip documentation site]
 
[https://pip.pypa.io/en/stable/ The pip documentation site]

גרסה אחרונה מ־04:10, 17 באוגוסט 2023

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

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