pip install中のエラー(ssl certificate)
pip install時に以下のようなエラーが起きました
Could not fetch URL https://pypi.org/simple/pip: There was a problem confirming the ssl certificate
証明書が信用できないようです。
なので、以下のようにpip.confを作り、信用させます。
[global]
trusted-host = pypi.python.org
pypi.org
files.pythonhosted.org
なお、Windowsの場合、下記のように作ればOKです。(フォルダ名と拡張子がことなるので注意)
C:\Users\<User name>\AppData\Roaming\pip\pip.ini
コメント