Difference between revisions of "Setting up tilestream"

From stgo
Jump to: navigation, search
(Created page with '>> return to Cedeus IDE ---- This page explains how to install TileStream on Ubuntu 12.04. The basic description is taken from [http://github.com/mapbox/tilestream TileStrea…')
 
Line 6: Line 6:
 
# <code>sudo apt-get update</code>
 
# <code>sudo apt-get update</code>
 
# <code>sudo apt-get install curl build-essential libssl-dev libsqlite3-0 libsqlite3-dev git-core</code> This installs curl, sqlite, git etc. When running the command I also got some problems with a repository location so I did add the parameter <code>"--fix-missing"</code> as suggested.  
 
# <code>sudo apt-get install curl build-essential libssl-dev libsqlite3-0 libsqlite3-dev git-core</code> This installs curl, sqlite, git etc. When running the command I also got some problems with a repository location so I did add the parameter <code>"--fix-missing"</code> as suggested.  
# next step is to add further apt repositories, but for that I needed to enable add-apt using <code>sudo apt-get install python-software-properties</code>
+
# next step is to add a further apt repository, but for that I needed to enable add-apt using <code>sudo apt-get install python-software-properties</code>
# add the repositories:  
+
# add the node.js repository: <code>sudo apt-add-repository ppa:chris-lea/node.js  
<code>
+
# update: <code>sudo apt-get update</code>
sudo apt-add-repository ppa:chris-lea/node.js
+
# install node.js: <code>sudo apt-get install nodejs</code> Note, the TileStream install instructions say that  ''nodejs''-dev and ''npm'' should be installed too, but [https://chrislea.com/2013/03/15/upgrading-from-node-js-0-8-x-to-0-10-0-from-my-ppa/ this blog entry] says that for nodejs version 0.10.0 these packages don't exist anymore, while they did for node.js 0.8.x.
sudo apt-get update
+
sudo apt-get install nodejs nodejs-dev npm
+
</code>
+

Revision as of 17:45, 26 February 2014

>> return to Cedeus IDE


This page explains how to install TileStream on Ubuntu 12.04. The basic description is taken from TileStreams Github page.

  1. I took an existing copy of my VirtualBox with Ubuntu 12.04 installed, including Apache2
  2. sudo apt-get update
  3. sudo apt-get install curl build-essential libssl-dev libsqlite3-0 libsqlite3-dev git-core This installs curl, sqlite, git etc. When running the command I also got some problems with a repository location so I did add the parameter "--fix-missing" as suggested.
  4. next step is to add a further apt repository, but for that I needed to enable add-apt using sudo apt-get install python-software-properties
  5. add the node.js repository: sudo apt-add-repository ppa:chris-lea/node.js
  6. update: <code>sudo apt-get update
  7. install node.js: sudo apt-get install nodejs Note, the TileStream install instructions say that nodejs-dev and npm should be installed too, but this blog entry says that for nodejs version 0.10.0 these packages don't exist anymore, while they did for node.js 0.8.x.