質問編集履歴
1
エラーコードの追記を行いました
test
CHANGED
File without changes
|
test
CHANGED
@@ -13,3 +13,39 @@
|
|
13
13
|
m = folium.Map(location = [35.942957,136.198863],zoom_start=16)
|
14
14
|
|
15
15
|
```
|
16
|
+
|
17
|
+
Anacondaで以下のコードを実行しました。
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
```
|
22
|
+
|
23
|
+
import sys
|
24
|
+
|
25
|
+
print(sys.executable)
|
26
|
+
|
27
|
+
```
|
28
|
+
|
29
|
+
C:\Users\user\anaconda3\python.exeと表示されました。
|
30
|
+
|
31
|
+
コマンドプロンプト上で
|
32
|
+
|
33
|
+
・C:\Users\user\anaconda3\python.exe -m pip install foliumと実行した結果以下のように
|
34
|
+
|
35
|
+
表示されました。
|
36
|
+
|
37
|
+
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
|
38
|
+
|
39
|
+
ERROR: Could not find a version that satisfies the requirement folium (from versions: none)
|
40
|
+
|
41
|
+
ERROR: No matching distribution found for folium
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
また下記アドレスを変更しても結果は上記と変化なしでした。
|
46
|
+
|
47
|
+
・\Users\user\anaconda3\python.exe
|
48
|
+
|
49
|
+
・C:\Users\user\anaconda3\python
|
50
|
+
|
51
|
+
・\Users\user\anaconda3\python
|