Created
May 15, 2014 11:52
-
-
Save sushat4692/257d918d40ce8973f7c2 to your computer and use it in GitHub Desktop.
Install HHVM to CentOS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ wget http://www.hop5.in/yum/el6/hop5.repo | |
$ yum install hhvm | |
// libwarf が無いよって怒られる | |
$ yum install libdwarf --enablerepo=epel | |
$ yum install hhvm | |
$ hhvm | |
// liblcms2.so.2が無いよって怒られる | |
$ wget http://pkgrepo.linuxtech.net/el6/release/x86_64/liblcms2-2.4-1.el6.x86_64.rpm | |
$ yum install liblcms2-2.4-1.el6.x86_64.rpm | |
$ hhvm | |
// -> OK(メモリー不足エラーが出る) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you!