質問編集履歴
1
エラー全文を追記しました。
title
CHANGED
|
File without changes
|
body
CHANGED
|
@@ -2,7 +2,19 @@
|
|
|
2
2
|
anacondaをインストールしpipを使ってライブラリを入れたいのですが、
|
|
3
3
|
anaconda prompt、コマンドプロンプトともに以下のエラーが出ます。
|
|
4
4
|
|
|
5
|
+
|
|
5
6
|
pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
|
|
7
|
+
Collecting pymysql
|
|
8
|
+
Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/pymysql/
|
|
9
|
+
Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/pymysql/
|
|
10
|
+
Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/pymysql/
|
|
11
|
+
Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/pymysql/
|
|
12
|
+
Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/pymysql/
|
|
13
|
+
Could not fetch URL https://pypi.org/simple/pymysql/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/pymysql/ (Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available.")) - skipping
|
|
14
|
+
Could not find a version that satisfies the requirement pymysql (from versions: )
|
|
15
|
+
No matching distribution found for pymysql
|
|
16
|
+
pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
|
|
17
|
+
Could not fetch URL https://pypi.org/simple/pip/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/pip/ (Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available.")) - skipping
|
|
6
18
|
|
|
7
19
|
### 環境
|
|
8
20
|
Windows 10, Python3.7.1, pip 19.0.1(anacondaprompt),pip 10.0.1(コマンドプロンプト)
|