參考 https://blog.csdn.net/LuyaoYing001/article/details/83416542 安裝最新版本google-chrome yum install https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm 1 測試安裝 google-chrome-stable --headless --disable-gpu --screenshot http://www.baidu.com/1 報錯: [1026/154358.043744:ERROR:zygote_host_impl_linux.cc(89)] Running as root without --no-sandbox is not supported. See https://crbug.com/638180. 需要指定以no-sandbox方式運行。 google-chrome-stable --no-sandbox --headless --disable-gpu --screenshot http://www.baidu.com/1
顯示這個表示成功 Fontconfig warning: “/etc/fonts/fonts.conf”, line 86: unknown element “blank” [1026/154710.301159:ERROR:gpu_process_transport_factory.cc(980)] Lost UI shared context. [1026/154711.126035:INFO:headless_shell.cc(538)] Written to file screenshot.png. 安裝chrome-driver(提供給java或者Python運行) wget http://npm.taobao.org/mirrors/chromedriver/70.0.3538.67/chromedriver_linux64.zip 這個是解壓zip 到指定文件夾 tar -zcvf chromedriver_linux64.zip /usr/local/bin/ 或 (二選一) unzip -d /usr/local/bin chromedriver_linux64.zip