它顯示在 python 中導入 pdfkit 時出錯

它顯示在 python 中導入 pdfkit 時出錯

我正在 Ubuntu 中使用 python3 進行編碼...我已經安裝了 pip

sudo apt install python3-pip

版本

pip3 --version

輸出

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

安裝wkhtmltopdf:

sudo apt-get install wkhtmltopdf

wkhtmltopdf版本輸出

wkhtmltopdf 0.12.4

安裝pdfkit

 pip install pdfkit

當我在 pycharm 中使用 pdfkit 範例時

    import pdfkit

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

是顯示

/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

我想要一個回复,請大家...

相關內容