我使用最新的Ruby on Rails版本,我实际上正在尝试使用wkhtmltopdf gem生成PDF。
所以,安装这些宝石之后:
gem 'pdfkit'
gem 'wkhtmltopdf-binary'
我在我的控制台中进行了这个简单的测试:
pdf = PDFKit.new("http://google.fr")
pdf.to_file('google-page.pdf')
我有以下错误:
/home/.rvm/gems/ruby-2.4.1/gems/wkhtmltopdf-binary-0.12.3.1/bin/wkhtmltopdf_linux_amd64: /lib/libc.so.6: version `GLIBC_2.9' not found (required by /home/.rvm/gems/ruby-2.4.1/gems/wkhtmltopdf-binary-0.12.3.1/bin/wkhtmltopdf_linux_amd64)
/home/.rvm/gems/ruby-2.4.1/gems/wkhtmltopdf-binary-0.12.3.1/bin/wkhtmltopdf_linux_amd64: /lib/libc.so.6: version `GLIBC_2.10' not found (required by /home/.rvm/gems/ruby-2.4.1/gems/wkhtmltopdf-binary-0.12.3.1/bin/wkhtmltopdf_linux_amd64)
我仍然无法解决这个问题...... :(
感谢您的帮助!