Django ImageField 画像設定 まとめ
解説:
ImageField
をdjangoで扱うためには、pythonパッケージのpillowが必要です。pillowはPIL
(PIL Python Imaging Library)の1つで、pythonで画像処理を担当します。pillowのインストール方法:
#pillowのインストールコマンド
python -m pip install Pillow
Error:
#pillowをインストールしていないとエラーが出ます
ERRORS: xxx.image: (fields.xxx) Cannot use ImageField because Pillow is not installed.
質問と回答