Problem Description
I'm trying to run [Telescope][1] (a meteor app) on an Ubuntu 16.04 server. I follow the instructions in the readme:
curl https://install.meteor.com/ | sh
git clone git@github.com:TelescopeJS/Telescope.git
npm install
The first two commands run without an error, but the last command end in `Killed`:
$ npm install
npm WARN deprecated cross-spawn-async@2.2.4: cross-spawn no longer requires a build toolchain, use it instead!
extract:moment → gunzTarP ▐ ╢█████████████████████████████████████████████████░░░░░░░░░░╟
Killed
Since it doesn't give any information I'm unsure what could be wrong here. Does anybody know how I can solve this? All tips are welcome!
[EDIT]
Using the tip of @Mills in the comments I first ran `npm install cross-spawn` and then `npm install` again. This fixed the `npm install` issue, but when I now try to run the app using `meteor` it ends with "Killed" again:
$ meteor
Killednloading meteor-tool@1.3.2_4... |
Any more ideas?
[1]: https://github.com/TelescopeJS/Telescope
AI-Generated Solution
Powered by LMSouq AI · GPT-4.1-mini
Analyzing problem and generating solution…
Was this solution helpful?