teratail header banner
teratail header banner
質問するログイン新規登録

回答編集履歴

1

追記しました。

2021/01/25 01:27

投稿

_whitecat_22
_whitecat_22

スコア1305

answer CHANGED
@@ -4,4 +4,16 @@
4
4
  $ python -m pip install --upgrade pip
5
5
  ```
6
6
 
7
- pythonのバージョンが、2.7のようですので、pip3は使えません。(pip3は、python3.x系用です)
7
+ pythonのバージョンが、2.7のようですので、pip3は使えません。(pip3は、python3.x系用です)
8
+
9
+
10
+ ---
11
+ 【追記】
12
+ selenium は最新バージョンも、python2.7以上またはpython3.4以上で使えますが、pillowはver.6.2.2までしかpython2.7に対応いないようです。
13
+ pillow 公式ページ参照:[https://pillow.readthedocs.io/en/stable/installation.html](https://pillow.readthedocs.io/en/stable/installation.html)
14
+
15
+ そのため、pillowをインストールする際は、以下のようにバージョンを指定してください。
16
+
17
+ ```Terminal
18
+ $ pip install pillow==6.2.2
19
+ ```