質問編集履歴
2
質問されたので追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -211,3 +211,37 @@
|
|
211
211
|
また、python -V
|
212
212
|
|
213
213
|
python3.5.4になっております。
|
214
|
+
|
215
|
+
|
216
|
+
|
217
|
+
pip list
|
218
|
+
|
219
|
+
Package Version
|
220
|
+
|
221
|
+
--------------- -------
|
222
|
+
|
223
|
+
beautifulsoup4 4.6.3
|
224
|
+
|
225
|
+
bs4 0.0.1
|
226
|
+
|
227
|
+
cycler 0.10.0
|
228
|
+
|
229
|
+
decorator 4.3.0
|
230
|
+
|
231
|
+
kiwisolver 1.0.1
|
232
|
+
|
233
|
+
matplotlib 3.0.1
|
234
|
+
|
235
|
+
networkx 2.2
|
236
|
+
|
237
|
+
numpy 1.15.4
|
238
|
+
|
239
|
+
pip 18.1
|
240
|
+
|
241
|
+
pyparsing 2.3.0
|
242
|
+
|
243
|
+
python-dateutil 2.7.5
|
244
|
+
|
245
|
+
setuptools 39.0.1
|
246
|
+
|
247
|
+
six 1.11.0
|
1
内容が間違っておりました。
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
ImportError:
|
1
|
+
ImportError: No module named 'bs4'の解決方法
|
test
CHANGED
@@ -22,11 +22,11 @@
|
|
22
22
|
|
23
23
|
```
|
24
24
|
|
25
|
-
File "link_network.py", line
|
25
|
+
File "link_network.py", line 2, in <module>
|
26
|
-
|
26
|
+
|
27
|
-
from
|
27
|
+
from bs4 import BeautifulSoup
|
28
|
-
|
28
|
+
|
29
|
-
ImportError:
|
29
|
+
ImportError: No module named 'bs4'
|
30
30
|
|
31
31
|
```
|
32
32
|
|