问题
I use django-wkhtmltopdf to generate PDF documents. I described a clear path to the django-wkhtmltopdf.
WKHTMLTOPDF_CMD = '/home/vagrant/envs/vagrant/lib/python2.7/site-packages/wkhtmltopdf'
I get the error:
[Errno 13] Permission denied
Permissions in the path to the django-wkhtmltopdf:
drwxrwxr-x 3 vagrant vagrant Feb 17, 4096 7:32 wkhtmltopdf
回答1:
You need to install wkhtmltopdf itself, and specify the path to the binary (either in /usr/bin or /usr/local/bin).
回答2:
What worked for me was:
- Download the file from oficial page
- From the file you downloaded extract the /bin/wkhtmltopdf file
- Place it somewhere at your project
In settings.py specify the FULL path to the binary file like:
WKHTMLTOPDF_CMD = '/home/stefanos/vEnvs/assembla/lib/python2.7/site-packages/wkhtmltopdf/wkhtmltopdf'
来源:https://stackoverflow.com/questions/28580691/errno-13-permission-denied-in-django-wkhtmltopdf