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

מתוך ויקי נטפרי
קפיצה לניווט קפיצה לחיפוש
מ (fix: use {{he}} for link to hebrew page instead of {{en}} (דרך WP:JWB))
 
(6 גרסאות ביניים של 2 משתמשים אינן מוצגות)
שורה 1: שורה 1:
<div lang="en" dir="ltr" class="mw-content-ltr">
+
{{he|התקנת תעודה ב-pip}}  
{{עמוד בעברית|התקנת תעודה ב-pip}}
+
{{Navigation|Security certificate}}
{{קישור אנגלית לתצוגת קריאה}}
+
In window, If you have the security certificate installation software installed, you can run this command:
  
<small>
+
pip config set global.cert "C:\ProgramData\NetFree\CA\netfree-ca-bundle-curl.crt"
''[[NetFriends|Home page]]'' > ''[[Security certificate]]'' > ''Installation of certificate in pip''
 
</small>
 
  
Download the Security certificate from here http://netfree.link/netfree-ca.crt and save it on the computer.
+
In linux, If you installed the certificate according to the instructions [[Installation of certificate in Linux operating system| here]]], you can run this command:
  
 +
pip config set global.cert '''/usr/lib/ssl/certs/ca-certificates.crt'''
  
Now create a text file named pip.ini (in Linux pip.conf) in the folder named pip in this path: 
 
  
'''''<span dir="ltr">C:\Users\ <users folder> \AppData\Roaming\pip</span>'''''
+
=== Another method===
  
(If the folder does not exist, create it)
+
Create or edit this file:
  
 +
%AppData%\pip\pip.ini
  
Write in the pip.ini file this content:
 
  
 +
Add the following lines:
  
  [global] <br/> cert = C:\netfree-ca.crt
+
[global]
 +
cert = C:\ProgramData\NetFree\CA\netfree-ca-bundle-curl.crt
  
Instead of the file path (C:/netfree-ca.crt) you should write the path where you saved the Security certificate.
+
And in linux according to the above address.
  
----
 
  
 +
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]].
  
Alternatively you can cancel the need for a certificate on the source sites of pip by adding the following lines to the above file:
 
  
 +
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.
 +
 +
 +
===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
  
  [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