Closed Traumflug closed 8 years ago
Do you have nodejs
installed?
to use nodejs on ubuntu you have to do a symlink on the nodejs binary, take a look a this : http://stackoverflow.com/questions/18130164/nodejs-vs-node-on-ubuntu-12-04?answertab=votes#tab-top
It looks like the script is failing because it's calling node install.js
whereas with Ubuntu node
is distributed as nodejs
. Maybe add a symlink
Haha you beat me to it by literally two seconds @run1t
Thanks for the hint, very appreciated! So I did this and it appears to work even less:
$ ln -s /usr/bin/nodejs /home/mah/Linux/bin/node
~/tinder-desktop$ ls -l /home/mah/Linux/bin/node
lrwxrwxrwx 1 mah mah 15 Jun 8 22:55 /home/mah/Linux/bin/node -> /usr/bin/nodejs
~tinder-desktop$ which node
/home/mah/Linux/bin/node
~/tinder-desktop$ node --version
v4.2.6
~/tinder-desktop$ node .
module.js:328
throw err;
^
Error: Cannot find module '/home/mah/tinder-desktop'
at Function.Module._resolveFilename (module.js:326:15)
at Function.Module._load (module.js:277:25)
at Function.Module.runMain (module.js:442:10)
at startup (node.js:136:18)
at node.js:966:3
Stupid me, node .
was the wrong attempt, of course. Finally the process completed with this sequence:
ln -s /usr/bin/nodejs /home/mah/Linux/bin/node
npm install bower
npm install
npm install gulp-cli
node_modules/.bin/gulp
At this point it occured to me that I forgot to pass 'run' to gulp. But instead of an error message I got a window asking for a Facebook login. This means the app is running properly, right?
Anyways, thanks for your help. Perhaps the above sequence find its way into the Readme on the project title page :-)
If you have the facebook login, it's good. You're right we should add this sequence in the readme. I'll probably do that tomorrow !
Just gave this nice project a try, but unfortunately I didn't get far:
After downloading a number of packages, it stops with this error message:
This is the log file (extension added to satisfy Github) npm-debug.log.txt
Being a command line (and Makefile, Assembly, C, Bash) savy user I don't mind building from sources, but nodejs/npm isn't exactly my area of expertise. What does the above error message mean? Any idea on how to fix this?
OS is Ubuntu 16.04 LTS AMD64, equipped with 4 GiB RAM and 44 GiB disk space left.