Created
December 20, 2012 13:45
-
-
Save dlokesh/4345402 to your computer and use it in GitHub Desktop.
installing tilestream on base 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
yum install git | |
yum -y install make gcc gcc-c++ kernel-devel | |
yum install openssl | |
wget https://github.com/joyent/node/archive/v0.4.9.zip | |
cd node-0.4.9 | |
./configure --prefix=/opt/node | |
make -j2 | |
sudo make install | |
echo 'export NODE_PATH=/opt/node:/opt/node/lib/node_modules' >> ~/.bashrc | |
echo 'export PATH=$PATH:/opt/node/bin' >> ~/.bashrc | |
curl https://npmjs.org/install.sh | sh | |
npm install -g tilestream | |
npm install -g zlib |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment