Pillowをインストールしたい
pip3 install pillowでPillowをインストールしようとしているのですが、インストール中に下のようなエラーが出てしまいます...
Building wheels for collected packages: Pillow
Building wheel for Pillow (setup.py) ... error
ERROR: Command errored out with exit status 1:
ターミナルでpip install Pillowを実行しました
https://teratail.com/questions/307213
に書かれている解決策を試しました。
開発環境
Python:3.9.4
OS:macOS Big Sur 11.6.1
https://www.geeksforgeeks.org/how-to-install-pillow-on-macos/
こちらの方のやり方でPillow-9.0.1をインストールできました! 開発環境は補足情報と全く同じです。もし同じ問題にぶつかった方がおりましたら試してみてください。ハル先生ご回答ありがとうございました
情報ありがとうございます。
助かります。
こちら試してみてください
pip3 install openssl
export LDFLAGS="-L/usr/local/opt/openssl/lib"
export CPPFLAGS="-I/usr/local/opt/openssl/include"
pip3 install psycopg2
pip3 install Pillow
何度もご質問申し訳ないです
pip3 install opensslを試してみたところ
ERROR: Could not find a version that satisfies the requirement openssl (from versions: none)
ERROR: No matching distribution found for openssl
というエラーが出てき他ので、https://teratail.com/questions/269703
の記事の解決策であるpip install pyOpenSSLを実行するを試してみました。しかし、今度は Installing build dependencies ... error
ERROR: Command errored out with exit status 1:
と言うpillowインストール時と似たようなエラーが出てしまいました...