Additional Tools Installation
Pimcore uses some 3rd party applications for certain functionalities, such as video transcoding (FFMPEG), image optimization (advpng, cjpeg, ...), and many others. For a full list of additional tools required or recommended for Pimcore, please visit Pimcore System Requirements.
The installation of some of the tools is covered in this guide and should work at least on every Debian based Linux (Debian, Ubuntu, Mint, ...). For other Linux distributions you might have to adopt some commands to your platform-specific environment, but we try to use as many statically linked software as possible, that can be used on any x64 Linux platform.
It's important that all tools (incl.
composer
) are added to the$PATH
env. variable, so that Pimcore is able to find the executables. If you're not able to control the$PATH
variable, you can also manually configure the paths for each application.
Composer
Please visit the official install guide for Composer: https://getcomposer.org/
FFMPEG
Please keep in mind that many Linux/GNU distributions ship FFMPEG only with free codecs, so they do not support commonly used video codecs such as mpeg4 and many others.
sudo apt-get install ffmpeg
LibreOffice, pdftotext, Inkscape, ...
apt-get install libreoffice libreoffice-script-provider-python libreoffice-math xfonts-75dpi poppler-utils inkscape libxrender1 libfontconfig1 ghostscript
Wkhtmltoimage / Wkhtmltopdf
Please visit: http://wkhtmltopdf.org/downloads.html
Image Optimizers
ZopfliPNG
wget https://github.com/imagemin/zopflipng-bin/blob/main/vendor/linux/zopflipng -O /usr/local/bin/zopflipng
chmod 0755 /usr/local/bin/zopflipng
PngCrush
wget https://github.com/imagemin/pngcrush-bin/blob/main/vendor/linux/pngcrush -O /usr/local/bin/pngcrush
chmod 0755 /usr/local/bin/pngcrush
JPEGOptim
wget https://github.com/imagemin/jpegoptim-bin/blob/main/vendor/linux/jpegoptim -O /usr/local/bin/jpegoptim
chmod 0755 /usr/local/bin/jpegoptim
PNGOut
wget https://github.com/imagemin/pngout-bin/blob/main/vendor/linux/x64/pngout -O /usr/local/bin/pngout
chmod 0755 /usr/local/bin/pngout
AdvPNG
wget https://github.com/imagemin/advpng-bin/blob/main/vendor/linux/advpng -O /usr/local/bin/advpng
chmod 0755 /usr/local/bin/advpng
MozJPEG
wget https://github.com/imagemin/mozjpeg-bin/blob/main/vendor/linux/cjpeg -O /usr/local/bin/cjpeg
chmod 0755 /usr/local/bin/cjpeg
Exiftool
apt-get install libimage-exiftool-perl
WebP
Install webp for WebP-Support
apt-get install webp
Graphviz
Install graphviz for Workflow
apt-get install graphviz
Facedetect
Install facedetect for image thumbnails focal point
apt-get install facedetect
Check your installation
You can check system requirements via Admin UI Tools
/ System Info & Tools
/ System-Requirements Check
menu.
Or via following CLI command:
bin/console pimcore:system:requirements:check