网站首页/电脑学习列表/内容

Ubuntu16.04部署phantomjs出现QXcbConnection问题

电脑学习2026-01-10阅读
首先phantomjs是作为pyspider的一个外部依赖组件部署的。 apt安装完出现问题:QXcbConnection: Could not connect to display Phantom...
首先phantomjs是作为pyspider的一个外部依赖组件部署的。
 
apt安装完出现问题:
QXcbConnection: Could not connect to display 
PhantomJS has crashed. Please read the bug reporting guide at
and file a bug report.
Aborted
 
在/usr/bin/phantomjs的合适位置加上以下设置代码:
export QT_QPA_PLATFORM=offscreen
export QT_QPA_FONTDIR=/usr/share/fonts
 
phantomjs即可正常运行。

……

相关阅读