Python configura pdfkit en windows

Empecé a aprender Python recientemente y quiero convertir el archivo html existente a un archivo pdf. Es muy extraño, pero pdfkit parece ser la única biblioteca para documentos pdf para python.

import pdfkit
pdfkit.from_file("C:\\Users\\user\Desktop\\table.html", "out.pdf")

Se produce un error:OSError: No wkhtmltopdf executable found: "b''"

Cómo configuraresta lib correctamente en windows para que funcione? No puedo entenderlo :(

Respuestas a la pregunta(2)

Su respuesta a la pregunta