1. ホーム
  2. linux

[解決済み] UbuntuでPhantomJSをセットアップして実行するにはどうしたらいいですか?

2022-04-24 09:29:03

質問

PhantomJSをセットアップして、ビデオに録画しました。 https://www.dailymotion.com/video/xnizmh_1_webcam

ビルドの手順 http://phantomjs.org/build.html

私の設定に何か問題があるのでしょうか?

設定した後、私は クイックスタートチュートリアル で、このコードを書いてみました。

phantomjs hello.js 

コマンドが見つからないというエラーが出ます。どうすればこの問題を解決できますか?

解決方法は?

Guidouilの回答は、私を正しい道に導いてくれました。私は/usr/bin/にシンボリックリンクを1つ追加しなければなりませんでしたが、3つすべてに対して直接シンボリックリンクを行いました。

UbuntuサーバーのNatty Narwhalにインストールしています。

これは私がやったことと全く同じです。

cd /usr/local/share
sudo wget https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-1.9.7-linux-x86_64.tar.bz2
sudo tar xjf phantomjs-1.9.7-linux-x86_64.tar.bz2
sudo ln -s /usr/local/share/phantomjs-1.9.7-linux-x86_64/bin/phantomjs /usr/local/share/phantomjs
sudo ln -s /usr/local/share/phantomjs-1.9.7-linux-x86_64/bin/phantomjs /usr/local/bin/phantomjs
sudo ln -s /usr/local/share/phantomjs-1.9.7-linux-x86_64/bin/phantomjs /usr/bin/phantomjs

そして最後に私が行うとき

phantomjs -v

1.9.7を取得

もし、私が行ったことに何か問題があると思われる方がいらっしゃいましたら、ぜひ教えてください。