-
-
Save telbiyski/ec56a92d7114b8631c906c18064ce620 to your computer and use it in GitHub Desktop.
sudo apt-get update | |
sudo apt-get install build-essential chrpath libssl-dev libxft-dev -y | |
sudo apt-get install libfreetype6 libfreetype6-dev -y | |
sudo apt-get install libfontconfig1 libfontconfig1-dev -y | |
cd ~ | |
export PHANTOM_JS="phantomjs-2.1.1-linux-x86_64" | |
wget https://github.com/Medium/phantomjs/releases/download/v2.1.1/$PHANTOM_JS.tar.bz2 | |
sudo tar xvjf $PHANTOM_JS.tar.bz2 | |
sudo mv $PHANTOM_JS /usr/local/share | |
sudo ln -sf /usr/local/share/$PHANTOM_JS/bin/phantomjs /usr/local/bin | |
phantomjs --version |
Thanks!
Thanks
👍
Thanks)
Thank you so much!
Thanks a lot man
Works like a charm!
Thanks!!!!
Thanks
Useful, indeed.
Super helpful!
it works on me..thx..
Following these instruction I end up with
@prod:~$ phantomjs --version
-bash: /usr/bin/phantomjs: No such file or directory
> gratefully thank you..
Practical and objective! Helped me perfectly. And now I'm going to use it to automate creating a shell script! 👍
Still working great. Thanks!
Thanks for these instructions. They worked well.
I did run into the same issue @cotillardq did on one of my servers so I just ran ln -sf /usr/local/bin/phantomjs /usr/bin
which seemed to work fine.
Helped me solve error can't find variable
when running cljsbuild test in clojure..Perfect solution!thanks
EXCELLENT! Tried 6 others and this the only one that worked on Ubuntu 18.04
THANK YOU!!!!
Thanks!
thank you!
Thank you very much !!!
Thanks!
Thanks!
Thanks
Hi,
For me I get an error in the last command:
$ phantomjs --version
Auto configuration failed
140090869620352:error:25066067:DSO support routines:DLFCN_LOAD:could not load the shared library:dso_dlfcn.c:185:filename(libssl_conf.so): libssl_conf.so: cannot open shared object file: No such file or directory
140090869620352:error:25070067:DSO support routines:DSO_load:could not load the shared library:dso_lib.c:244:
140090869620352:error:0E07506E:configuration file routines:MODULE_LOAD_DSO:error loading dso:conf_mod.c:285:module=ssl_conf, path=ssl_conf
140090869620352:error:0E076071:configuration file routines:MODULE_RUN:unknown module name:conf_mod.c:222:module=ssl_conf
Would someone know the reason of this problem?
Hi,
For me I get an error in the last command:
$ phantomjs --version Auto configuration failed 140090869620352:error:25066067:DSO support routines:DLFCN_LOAD:could not load the shared library:dso_dlfcn.c:185:filename(libssl_conf.so): libssl_conf.so: cannot open shared object file: No such file or directory 140090869620352:error:25070067:DSO support routines:DSO_load:could not load the shared library:dso_lib.c:244: 140090869620352:error:0E07506E:configuration file routines:MODULE_LOAD_DSO:error loading dso:conf_mod.c:285:module=ssl_conf, path=ssl_conf 140090869620352:error:0E076071:configuration file routines:MODULE_RUN:unknown module name:conf_mod.c:222:module=ssl_confWould someone know the reason of this problem?
Same issue for me
Solved by running
export OPENSSL_CONF=/etc/ssl/
Awesome! thanks!