動的なクローラー作成の為、selenium webdriverをインストールしました。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
[user@localhost crawler]$ gem install selenium-webdriver Fetching: rubyzip-1.2.0.gem (100%) Successfully installed rubyzip-1.2.0 Fetching: ffi-1.9.14.gem (100%) Building native extensions. This could take a while... Successfully installed ffi-1.9.14 Fetching: childprocess-0.5.9.gem (100%) Successfully installed childprocess-0.5.9 Fetching: websocket-1.2.3.gem (100%) Successfully installed websocket-1.2.3 Fetching: selenium-webdriver-3.0.5.gem (100%) Successfully installed selenium-webdriver-3.0.5 Parsing documentation for rubyzip-1.2.0 Installing ri documentation for rubyzip-1.2.0 Parsing documentation for ffi-1.9.14 Installing ri documentation for ffi-1.9.14 Parsing documentation for childprocess-0.5.9 Installing ri documentation for childprocess-0.5.9 Parsing documentation for websocket-1.2.3 Installing ri documentation for websocket-1.2.3 Parsing documentation for selenium-webdriver-3.0.5 Installing ri documentation for selenium-webdriver-3.0.5 Done installing documentation for rubyzip, ffi, childprocess, websocket, selenium-webdriver after 8 seconds 5 gems installed |
特に問題なくインストール出来ました。
データベース系サイト用にデータ収集クローラーを開発してみることにしました。その記録をこちらに記載していきます。
この記事は随時追記して...
Windowsにインストールしたかったのでやり直しました。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
C:\Users\test\Downloads>gem install selenium-webdriver Fetching: rubyzip-1.2.0.gem (100%) Successfully installed rubyzip-1.2.0 Fetching: ffi-1.9.17-x64-mingw32.gem (100%) Successfully installed ffi-1.9.17-x64-mingw32 Fetching: childprocess-0.6.1.gem (100%) Successfully installed childprocess-0.6.1 Fetching: websocket-1.2.3.gem (100%) Successfully installed websocket-1.2.3 Fetching: selenium-webdriver-3.0.5.gem (100%) Successfully installed selenium-webdriver-3.0.5 Parsing documentation for rubyzip-1.2.0 Installing ri documentation for rubyzip-1.2.0 Parsing documentation for ffi-1.9.17-x64-mingw32 Installing ri documentation for ffi-1.9.17-x64-mingw32 Parsing documentation for childprocess-0.6.1 Installing ri documentation for childprocess-0.6.1 Parsing documentation for websocket-1.2.3 Installing ri documentation for websocket-1.2.3 Parsing documentation for selenium-webdriver-3.0.5 Installing ri documentation for selenium-webdriver-3.0.5 Done installing documentation for rubyzip, ffi, childprocess, websocket, seleniu m-webdriver after 4 seconds 5 gems installed |