Skip to content

Instantly share code, notes, and snippets.

@seanthegeek
Last active October 26, 2018 08:58
Show Gist options
  • Select an option

  • Save seanthegeek/53e9140cec0f33b8c5f8dd2befeb1aa2 to your computer and use it in GitHub Desktop.

Select an option

Save seanthegeek/53e9140cec0f33b8c5f8dd2befeb1aa2 to your computer and use it in GitHub Desktop.

Revisions

  1. Sean Whalen revised this gist Oct 26, 2018. 1 changed file with 5 additions and 0 deletions.
    5 changes: 5 additions & 0 deletions install-pyv8.sh
    Original 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
  2. Sean Whalen revised this gist Oct 26, 2018. No changes.
  3. Sean Whalen created this gist Oct 26, 2018.
    14 changes: 14 additions & 0 deletions install-malhur.md
    Original 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
    ```