ubuntu 安装puppeteer,linux使用puppeteer

前端之家收集整理的这篇文章主要介绍了ubuntu 安装puppeteer,linux使用puppeteer前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

在安装puppeteer过程中遇到一些错误,记录一下

首先可能遇到node install.js错误,可以使用一下命令参数安装puppeteer

npm i --save puppeteer --ignore-scripts
或者先执行一下命令再安装puppeteer
npm config set unsafe-perm true
npm i puppeteer

其次可能会遇到各种库没有安装的错误,比如libX11-xcb.so.1,具体所需依赖可以查看Troubleshooting.或直接执行一下命令

sudo apt install gconf-service libasound2 libatk1.0-0 libc6 libcairo2 libcups2 libdbus-1-3 libexpat1 libfontconfig1 libgcc1 libgconf-2-4 libgdk-pixbuf2.0-0 libglib2.0-0 libgtk-3-0 libnspr4 libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 libx11-xcb1 libxcb1 libxcomposite1 libxcursor1 libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 libxtst6 ca-certificates fonts-liberation libappindicator1 libnss3 lsb-release xdg-utils wget

还有sandBox 问题,可以尝试在无沙箱模式下运行puppeteer

const browser = await puppeteer.launch({args: ['--no-sandBox','--disable-setuid-sandBox']});
原文链接:https://www.f2er.com/ubuntu/350454.html

猜你在找的Ubuntu相关文章