質問編集履歴
1
エラーコードの追記を行いました
title
CHANGED
File without changes
|
body
CHANGED
@@ -5,4 +5,22 @@
|
|
5
5
|
import folium
|
6
6
|
|
7
7
|
m = folium.Map(location = [35.942957,136.198863],zoom_start=16)
|
8
|
-
```
|
8
|
+
```
|
9
|
+
Anacondaで以下のコードを実行しました。
|
10
|
+
|
11
|
+
```
|
12
|
+
import sys
|
13
|
+
print(sys.executable)
|
14
|
+
```
|
15
|
+
C:\Users\user\anaconda3\python.exeと表示されました。
|
16
|
+
コマンドプロンプト上で
|
17
|
+
・C:\Users\user\anaconda3\python.exe -m pip install foliumと実行した結果以下のように
|
18
|
+
表示されました。
|
19
|
+
Could not fetch URL https://pypi.org/simple/folium/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/folium/ (Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available.")) - skipping
|
20
|
+
ERROR: Could not find a version that satisfies the requirement folium (from versions: none)
|
21
|
+
ERROR: No matching distribution found for folium
|
22
|
+
|
23
|
+
また下記アドレスを変更しても結果は上記と変化なしでした。
|
24
|
+
・\Users\user\anaconda3\python.exe
|
25
|
+
・C:\Users\user\anaconda3\python
|
26
|
+
・\Users\user\anaconda3\python
|