Last active
October 26, 2018 08:58
-
-
Save seanthegeek/53e9140cec0f33b8c5f8dd2befeb1aa2 to your computer and use it in GitHub Desktop.
Revisions
-
Sean Whalen revised this gist
Oct 26, 2018 . 1 changed file with 5 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ #!/usr/bin/bash sudo apt-get install -y python-pip libboost-all-dev sudo pip install -U pip setuptools sudo -H pip install git+https://github.com/buffer/pyv8 # This can take a long time, and may appear to hang -
Sean Whalen revised this gist
Oct 26, 2018 . No changes.There are no files selected for viewing
-
Sean Whalen created this gist
Oct 26, 2018 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ ```bash sudo apt-get install -y uthash-dev libconfig-dev libarchive-dev libtool autoconf automake checkinstall git clone https://github.com/rieck/malheur.git cd malheur ./bootstrap ./configure --prefix=/usr make ``` **Note**: The version number `checkinstall` parses from `Malhur` doesn’t conform to Debian standard, so you'll have to specify the correct version number when prompted by `checkinstall`. Technically, `sudo make install` will work fine. `checkinstall` just makes it easier to upgrade and/or remove it just like any other Debian package. ```bash sudo checkinstall ```