fix zlib-check error message

Signed-off-by: tastytea <tastytea@tastytea.de>
This commit is contained in:
tastytea 2023-02-02 21:15:13 +01:00
parent d9ade4ba6e
commit 334931af21
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ if not check_codec("jpg"):
if not check_codec("zlib"):
raise Exception(
"FATAL: zip codec not supported. Install pillow correctly! "
" 'sudo apt-get install libjpeg-dev' then 'pip uninstall pillow &&"
" 'sudo apt-get install zlib1g-dev' then 'pip uninstall pillow &&"
" pip install pillow --user'"
)