Discussion:
Implementing pdfkit and wkhtmltopdf on windows fails
(too old to reply)
robert brook
2014-10-31 16:46:21 UTC
Permalink
I am able to install both of these packages on my mac at home and it works well.

I am trying to install on windows 7 at work and it fails. PDFKit is trying to find the wkh package and it cannot. I have entered the full path to the exe for the environment variables and the error below is spit out.

If I explicitly cd into the directory that has the executable the script works fine
import os
path='C:\\wkhtmltopdf\\bin\\'
os.chdir(path)
pdfkit.from_string('Hello!', 'out.pdf')
Loading pages (1/6) #this works after cd into the exe directory


Where can I specify the path to the executable?

*************
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Applications\python_33_32_bit\lib\site-packages\pdfkit-0.4.1-py3.3.eg
g\pdfkit\api.py", line 66, in from_string
File "C:\Applications\python_33_32_bit\lib\site-packages\pdfkit-0.4.1-py3.3.eg
g\pdfkit\pdfkit.py", line 39, in __init__
File "C:\Applications\python_33_32_bit\lib\site-packages\pdfkit-0.4.1-py3.3.eg
g\pdfkit\configuration.py", line 27, in __init__
OSError: No wkhtmltopdf executable found: "b''"
If this file exists please check that this process can read it. Otherwise please
install wkhtmltopdf - https://github.com/JazzCore/python-pdfkit/wiki/Installing
-wkhtmltopdf

**********************
Dave Angel
2014-10-31 17:02:01 UTC
Permalink
Post by robert brook
I am able to install both of these packages on my mac at home and it works well.
I am trying to install on windows 7 at work and it fails. PDFKit is trying to find the wkh package and it cannot. I have entered the full path to the exe for the environment variables and the error below is spit out.
If I explicitly cd into the directory that has the executable the script works fine
import os
path='C:\\wkhtmltopdf\\bin\\'
os.chdir(path)
pdfkit.from_string('Hello!', 'out.pdf')
Loading pages (1/6) #this works after cd into the exe directory
Where can I specify the path to the executable?
*************
File "<stdin>", line 1, in <module>
File "C:\Applications\python_33_32_bit\lib\site-packages\pdfkit-0.4.1-py3.3.eg
g\pdfkit\api.py", line 66, in from_string
File "C:\Applications\python_33_32_bit\lib\site-packages\pdfkit-0.4.1-py3.3.eg
g\pdfkit\pdfkit.py", line 39, in __init__
File "C:\Applications\python_33_32_bit\lib\site-packages\pdfkit-0.4.1-py3.3.eg
g\pdfkit\configuration.py", line 27, in __init__
OSError: No wkhtmltopdf executable found: "b''"
If this file exists please check that this process can read it. Otherwise please
install wkhtmltopdf - https://github.com/JazzCore/python-pdfkit/wiki/Installing
-wkhtmltopdf
**********************
I don't know your particular module, but generally, you want modules
installed on your sys.path. Either install it there, or add the
directory to sys.path (which is a list)

I'd suggest doing the latter, then figure whether a reinstall is called
for. It looks like you installed it in the root directory of C:, rather
than in the site-packages.
--
DaveA
robert brook
2014-10-31 17:25:30 UTC
Permalink
Post by Dave Angel
Post by robert brook
I am able to install both of these packages on my mac at home and it works well.
I am trying to install on windows 7 at work and it fails. PDFKit is trying to find the wkh package and it cannot. I have entered the full path to the exe for the environment variables and the error below is spit out.
If I explicitly cd into the directory that has the executable the script works fine
import os
path='C:\\wkhtmltopdf\\bin\\'
os.chdir(path)
pdfkit.from_string('Hello!', 'out.pdf')
Loading pages (1/6) #this works after cd into the exe directory
Where can I specify the path to the executable?
*************
File "<stdin>", line 1, in <module>
File "C:\Applications\python_33_32_bit\lib\site-packages\pdfkit-0.4.1-py3.3.eg
g\pdfkit\api.py", line 66, in from_string
File "C:\Applications\python_33_32_bit\lib\site-packages\pdfkit-0.4.1-py3.3.eg
g\pdfkit\pdfkit.py", line 39, in __init__
File "C:\Applications\python_33_32_bit\lib\site-packages\pdfkit-0.4.1-py3.3.eg
g\pdfkit\configuration.py", line 27, in __init__
OSError: No wkhtmltopdf executable found: "b''"
If this file exists please check that this process can read it. Otherwise please
install wkhtmltopdf - https://github.com/JazzCore/python-pdfkit/wiki/Installing
-wkhtmltopdf
**********************
I don't know your particular module, but generally, you want modules
installed on your sys.path. Either install it there, or add the
directory to sys.path (which is a list)
I'd suggest doing the latter, then figure whether a reinstall is called
for. It looks like you installed it in the root directory of C:, rather
than in the site-packages.
--
DaveA
I see the problem. The installation of the package did not drop down the files that the executable is looking for.

Thanks
Peter Otten
2014-10-31 17:45:00 UTC
Permalink
Post by robert brook
I am able to install both of these packages on my mac at home and it works well.
I am trying to install on windows 7 at work and it fails. PDFKit is
trying to find the wkh package and it cannot. I have entered the full path
to the exe for the environment variables and the error below is spit out.
If I explicitly cd into the directory that has the executable the script works fine
import os
path='C:\\wkhtmltopdf\\bin\\'
os.chdir(path)
pdfkit.from_string('Hello!', 'out.pdf')
Loading pages (1/6) #this works after cd into the exe directory
Where can I specify the path to the executable?
*************
File "<stdin>", line 1, in <module>
File
"C:\Applications\python_33_32_bit\lib\site-packages\pdfkit-0.4.1-
py3.3.eg
Post by robert brook
g\pdfkit\api.py", line 66, in from_string
File
"C:\Applications\python_33_32_bit\lib\site-packages\pdfkit-0.4.1-
py3.3.eg
Post by robert brook
g\pdfkit\pdfkit.py", line 39, in __init__
File
"C:\Applications\python_33_32_bit\lib\site-packages\pdfkit-0.4.1-
py3.3.eg
Post by robert brook
g\pdfkit\configuration.py", line 27, in __init__
OSError: No wkhtmltopdf executable found: "b''"
If this file exists please check that this process can read it. Otherwise please
install wkhtmltopdf -
https://github.com/JazzCore/python-pdfkit/wiki/Installing
-wkhtmltopdf
**********************
Following the link in the traceback I find the installation instruction for
windows:

"""
Download the installer from the wkhtmltopdf downloads list and add folder
with wkhtmltopdf binary to PATH.
"""

This PATH has nothing to do with Python's sys.path which specifies where
Python looks for modules, and you have to set it according to the rules of
your OS, e. g.

http://geekswithblogs.net/renso/archive/2009/10/21/how-to-set-the-windows-path-in-windows-7.aspx

Once you have added "the directory you had to cd into" follwing the above
instructions your script should work in a newly opened shell window.
Loading...