自制爬虫框架-Pider框架安装

  • 安装
    • 需求
    • 安装

安装

需求

  • PHP >= 7.1
  • pcntl(可选,多进程需要)

安装

git clone https://github.com/duanqiaobb/pider.git
git submodule update --init --recursive
//安装composer,如果出现问题,请参考 [composer官方文档](https://getcomposer.org/download/) 进行安装
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
php -r "if (hash_file('SHA384', 'composer-setup.php') === '544e09ee996cdf60ece3804abc52599c22b1f40f4323403c44d44fdfdd586475ca9813a858088ffbc1f233e9b180f061') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
php composer-setup.php
php -r "unlink('composer-setup.php');"
//安装
cd pider
chmod u+x install.sh
./install.sh

你可能感兴趣的:(php,工具,爬虫,网络爬虫)