Skip to content

Instantly share code, notes, and snippets.

@sandeepkunkunuru
Last active August 29, 2015 14:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sandeepkunkunuru/0a0817f4b6bf4423c5ed to your computer and use it in GitHub Desktop.
Save sandeepkunkunuru/0a0817f4b6bf4423c5ed to your computer and use it in GitHub Desktop.
Steps to setup PCP + Vector from source on Ubuntu 14.10

Setting up PCP

  • git clone git://git.pcp.io/pcp
  • cd pcp/
  • sudo apt-get install bison
  • sudo apt-get install flex
  • sudo apt-get install libmicrohttpd10 libmicrohttpd-dev
  • ./configure --prefix=/usr --libexecdir=/usr/lib --sysconfdir=/etc --localstatedir=/var --with-rcdir=/etc/init.d --with-webapi
  • sudo apt-get install qt4-dev-tools
  • make
  • sudo su
  • make install
  • sudo service pcp start
  • sudo service pmwebd start

Setting up Vector

  • git clone git@github.com:Netflix/vector.git
  • cd vector/
  • sudo apt-get install nodejs
  • sudo apt-get install nodejs-dev
  • sudo apt-get install npm
  • sudo npm install -g bower
  • ln -s /usr/bin/nodejs /usr/bin/node
  • bower install
  • npm install
  • npm install --global gulp
  • gulp

References

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment