Hello, <br> I am trying to install pdfkit. I used the bash console and entered 'pip3.5 install --user pdfkit' (also pip install --user pdfkit) and appears that the package was installed, as per pip freeze. The package has a dependency 'wkhtmltopdf' which appears to have installed successfully as well. <br> <br> However when I import module into my flask_app.py file it comes up with the following error: <br> <br>
// File "/home/tayljordan/qmapps/flask_app.py", line 5, in <module> import pdfkit ImportError: No module named 'pdfkit' // <br> <br> Any help would be appreciated. Thank you in advance.