質問編集履歴
2
環境について追記
title
CHANGED
File without changes
|
body
CHANGED
@@ -26,4 +26,12 @@
|
|
26
26
|
をターミナルにて入力しました。
|
27
27
|
どちらを入力しても同じ結果が出ます。
|
28
28
|
|
29
|
+
### 環境
|
30
|
+
OS macOS Mojave ver10.14.5
|
31
|
+
Python 3.7.2
|
32
|
+
pip Version: 19.0.2
|
33
|
+
プロキシサーバを使用しておりません
|
34
|
+
自宅、会社両方で試しましたが同じエラーが発生しました。
|
35
|
+
|
36
|
+
|
29
37
|
追加情報
|
1
エラーメッセージを追加しました。
title
CHANGED
File without changes
|
body
CHANGED
@@ -3,8 +3,18 @@
|
|
3
3
|
BeautifuSoup4をインストールして開発環境を整えたいです。
|
4
4
|
|
5
5
|
### 発生している問題・エラーメッセージ
|
6
|
-
```
|
6
|
+
```pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
|
7
|
+
Collecting beautifulsoup4
|
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/beautifulsoup4/
|
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/beautifulsoup4/
|
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/beautifulsoup4/
|
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/beautifulsoup4/
|
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/beautifulsoup4/
|
13
|
+
Could not fetch URL https://pypi.org/simple/beautifulsoup4/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/beautifulsoup4/ (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 beautifulsoup4 (from versions: )
|
7
15
|
No matching distribution found for beautifulsoup4
|
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
|
8
18
|
```
|
9
19
|
|
10
20
|
### 試したこと
|
@@ -14,4 +24,6 @@
|
|
14
24
|
$ pip install bs4
|
15
25
|
```
|
16
26
|
をターミナルにて入力しました。
|
17
|
-
どちらを入力しても同じ結果が出ます。
|
27
|
+
どちらを入力しても同じ結果が出ます。
|
28
|
+
|
29
|
+
追加情報
|