pdfkit正在开发python2,但它在python3中不起作用

时间:2017-11-15 09:11:26

标签: python-3.x

import pdfkit

  

错误:回溯(最近一次呼叫最后一次):
  文件&#34; <stdin>&#34;,第1行,<module> ImportError:没有名为&#39; pdfkit&#39;

的模块

当我在python2中使用pdfkit时,它工作正常,但如果我在python3中使用它会出现上述错误

2 个答案:

答案 0 :(得分:2)

Python 2和Python 3的包是完全独立的。您必须分别为两个Python版本安装任何软件包。尝试:

sudo python3 -m pip install pdfkit

答案 1 :(得分:0)

除了为python3安装pdfkit之外,您还需要使用python3的解释器,即在应用程序顶部使用#!/ usr / local / bin / python3或在运行时使用python3 app.py。