I'm trying to deploy an application on GAE Flexible and this error keeps coming up.
ImportError at / MagickWand shared library not found. You probably had not installed ImageMagick library. Try to install: apt-get install libmagickwand-dev
Locally everything works fine, I've installed wand
on my virtual env:
pip install wand
In my requirements.txt
I've placed wand
and the other libraries I am using.
On the prompts logs, after use the command gcloud app deploy
, one of the logs confirms that the library is sucessfully instaled:
Step #1: Sucessfully installed Django-1.11.8 .....(other libraries).. wand-0.4.4 wheel-0.30.0
I've already tried to use other versions of wand, until version wand-0.3.5
Still got the same error.
Is there anyway to acess the GAE terminal to instal the libmagickwand-dev
?