Cloud9でPhantomJSを利用するのはかなり簡単です。 手順 * Python3に設定 * SeleniumとPhantomJSのインストール Python3に設定 Python2から3へのバージョンアップします。 で、以下のコマンドを実行 $ sudo mv /usr/bin/python /usr/bin/python2 $ sudo ln -s /usr/bin/python3 /usr/bin/python SeleniumとPhantomJSのインストール 続いてPhantomJSのインストールを行います。 $ sudo pip3 install selenium $ sudo npm install -g phantomjs これで終わりです。