Skip to content
This repository has been archived by the owner on Jan 2, 2020. It is now read-only.

Installing dependencies

Victor Shyba edited this page May 23, 2015 · 6 revisions

Manual install only

If you got here after trying to install with install-pixelated.sh this means that your are trying to install using the manual method. Automatic method involves using Vagrant as described on README.md. Those are descriptions, links and commands that can help solving and understanding missing dependencies.

NodeJS

Node is used to build the front-end (web-ui folder).

There are two good guides on the web: here and here

Remember that on Ubuntu there is another package on the command node and thus you have to manually add nodejs as node to your PATH or just symlink it:

Ubuntu 14.04:

sudo apt-get install nodejs
sudo ln -s /usr/bin/nodejs /usr/bin/node

NPM

Also used on front-end build.

For other OS, see here.

Ubuntu 14.04:

sudo apt-get install npm