Es zeigt einen Fehler beim Importieren von pdfkit in Python

Es zeigt einen Fehler beim Importieren von pdfkit in Python

Ich verwende Python3 zum Codieren in Ubuntu ... Ich habe pip bereits installiert

sudo apt install python3-pip

Ausführung

pip3 --version

Ausgabe

pip 9.0.1 from /usr/lib/python3/dist-packages (python 3.6)

Installieren Sie wkhtmltopdf:

sudo apt-get install wkhtmltopdf

wkhtmltopdf Versionsausgabe

wkhtmltopdf 0.12.4

pdfkit installieren

 pip install pdfkit

wenn ich das PDFKit-Beispiel in PyCharm verwende

    import pdfkit

pdfkit.from_url('http://google.com', 'out.pdf')
pdfkit.from_file('test.html', 'out.pdf')
pdfkit.from_string('Hello!', 'out.pdf')

ist zeigt

/home/user/PycharmProjects/pythonProject/venv/bin/python "/home/user/PycharmProjects/sample project/venv/pipSample.py"
Traceback (most recent call last):
  File "/home/user/PycharmProjects/sample project/venv/pipSample.py", line 1, in <module>
    import pdfkit
ModuleNotFoundError: No module named 'pdfkit'

Process finished with exit code 1

Ich möchte eine Antwort, Leute, bitte ...

verwandte Informationen