前提・実現したいこと
pythonのversionは3.8.2でpipは21.0です。
ファイルに書かれた、単語リストを読み取って、各単語を google イメージ検索で検索し、そのブラウザの画面毎キャプチャしファイルに保存するスクリプト
を実行しようとしています。
発生している問題・エラーメッセージ
seleniumはインストールできているのですが、
pillowの公式サイト
に従い、
python3 -m pip install --upgrade pip python3 -m pip install --upgrade Pillow
を実行しても以下のエラーメッセージがでてインストールできません
[~] % python3 -m pip install --upgrade Pillow Defaulting to user installation because normal site-packages is not writeable Collecting Pillow Using cached Pillow-8.1.0.tar.gz (44.9 MB) Building wheels for collected packages: Pillow Building wheel for Pillow (setup.py) ... error ERROR: Command errored out with exit status 1: 省略 The headers or library files could not be found for jpeg, a required dependency when compiling Pillow from source. 省略 ERROR: Failed building wheel for Pillow Running setup.py clean for Pillow Failed to build Pillow Installing collected packages: Pillow Running setup.py install for Pillow ... error 省略 ERROR: Command errored out with exit status 1: /Applications/Xcode.app/Contents/Developer/usr/bin/python3 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/tmp/pip-install-nr11sd4k/pillow_8653b6a3badd433aaf9d08b3b678a8b7/setup.py'"'"'; __file__='"'"'/private/tmp/pip-install-nr11sd4k/pillow_8653b6a3badd433aaf9d08b3b678a8b7/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record /private/tmp/pip-record-7hyjcf10/install-record.txt --single-version-externally-managed --compile --install-headers /Library/Python/3.8/include/pillow Check the logs for full command output.```
試したこと
ここに問題に対して試したことを記載してください。
補足情報(FW/ツールのバージョンなど)
pip3 listは
Package Version
pip 21.0
selenium 3.141.0
setuptools 41.2.0
six 1.15.0
urllib3 1.26.2
wheel 0.33.1
です。
ここにより詳細な情報を記載してください。
回答2件
あなたの回答
tips
プレビュー