# 十公里民宿 ## 网页抓取说明 ### 网页抓屏解决方案 #### 安装 chrome ```bash # yum install google-chrome-stable 方式二选一 curl https://intoli.com/install-google-chrome.sh | sh ``` #### 下载 chrome 驱动 [https://npm.taobao.org/mirrors/chromedriver/](https://npm.taobao.org/mirrors/chromedriver/) 驱动最好跟安装的 `chrome` 版本对应。服务器上是 87.0.4280.88 的 linux 版本 下载完成之后,上传到 服务器某个目录,并设置执行权限 ```bash chmod +x chromedriver ``` ### 解决网页抓取中文乱码问题 ```bash yum -y groupinstall "X Window System" yum -y groupinstall chinese-support yum -y groupinstall Fonts cd /usr/share/fonts fc-cache -fv ```