Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
4 Ответы
8661 Представления

When I createing new database in odoo at that time it gives the error of  "decoder jpeg not available"

I also tried :

     pip uninstall PIL    

     pip install pillow

sudo apt-get install python-imaging

 

Аватар
Отменить
Лучший ответ

libjpeg8-dev is required to be able to process jpegs with pillow (or PIL) for ubuntu 14.04 and higher, so you need to install it and then recompile pillow. Install 

sudo apt-get install libjpeg8-dev

and try to reinstall the pillow 

pip install --no-cache-dir -I pillow

Hope this helps!

Аватар
Отменить
Лучший ответ

Make sure you have libjpeg and libjpeg-dev installed. After this try to reinstall pillow module. The output should contain

--- JPEG support available

If the output already contains that string and the error still persist check this answer: https://stackoverflow.com/questions/22409140/pillow-recognizes-jpeg-encoder-on-install-but-not-use

Аватар
Отменить
Автор

Thank you Ben.

Лучший ответ

Yes Mr. Ben is right, It will work so that please follow him.

Аватар
Отменить
Related Posts Ответы Просмотры Активность
1
июл. 25
458
1
июн. 25
1064
0
мая 25
1182
2
апр. 25
3178
1
февр. 25
1394