回答編集履歴

1

追記しました。

2021/01/25 01:27

投稿

_whitecat_22
_whitecat_22

スコア1305

test CHANGED
@@ -11,3 +11,27 @@
11
11
 
12
12
 
13
13
  pythonのバージョンが、2.7のようですので、pip3は使えません。(pip3は、python3.x系用です)
14
+
15
+
16
+
17
+
18
+
19
+ ---
20
+
21
+ 【追記】
22
+
23
+ selenium は最新バージョンも、python2.7以上またはpython3.4以上で使えますが、pillowはver.6.2.2までしかpython2.7に対応いないようです。
24
+
25
+ pillow 公式ページ参照:[https://pillow.readthedocs.io/en/stable/installation.html](https://pillow.readthedocs.io/en/stable/installation.html)
26
+
27
+
28
+
29
+ そのため、pillowをインストールする際は、以下のようにバージョンを指定してください。
30
+
31
+
32
+
33
+ ```Terminal
34
+
35
+ $ pip install pillow==6.2.2
36
+
37
+ ```