I have a Python application running on an AWS EC2 instance (Amazon Linux, Elastic Beanstalk) that requires certain specific fonts to output output and wonder how to install them as part of the deployment process or launching the instance.
My code running on my local computer (OS X) uses
'Arial Unicode MS'
'Open Sans'
as fonts. But these fonts are not available by default on EC2 (I only see DejavuSans and DejvuSerif in /usr/share/fonts), and it’s not clear to me which packages may include the fonts I need or how to install them.
How to install these two fonts on EC2, preferably using yumor commandor container_commandas part of the deployment process / instaitation specified in the file .ebextensions/*.config?
source
share