Closed
Bug 1258090
Opened 9 years ago
Closed 9 years ago
Unable to build Fireplace on Ubuntu 14.04
Categories
(Marketplace Graveyard :: General, defect)
Marketplace Graveyard
General
Tracking
(Not tracked)
RESOLVED
INVALID
People
(Reporter: neeraj-lad, Unassigned)
Details
User Agent: Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36
Steps to reproduce:
My OS: Ubuntu 14.04
I followed instructions here: http://marketplace.readthedocs.org/en/latest/topics/frontend.html#frontend
to Setup Marketplace Frontend.
I faced two issues while doing this.
Actual results:
(1)
git clone git@github.com:mozilla/fireplace
gave following message:
<i>
Cloning into 'fireplace'...
The authenticity of host 'github.com (192.30.252.130)' can't be established.
RSA key fingerprint is 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'github.com,192.30.252.130' (RSA) to the list of known hosts.
Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
</i>
I was able to clone the repository using:
git clone https://github.com/mozilla/fireplace.
(2) After I cloned the repo and ran
npm install
I got the following message:
<i>
npm WARN enoent ENOENT: no such file or directory, open '/home/student/Desktop/OpenSource/Mozilla/Marketplace/package.json'
npm WARN Marketplace No description
npm WARN Marketplace No repository field.
npm WARN Marketplace No README data
npm WARN Marketplace No license field.
</i>
Expected results:
I am unable to setup Marketplace using the instructions provided in the frontend docs here:
http://marketplace.readthedocs.org/en/latest/topics/frontend.html#frontend
Comment 1•9 years ago
|
||
try 'cd fireplace' first to run npm in the fireplace checkout directory.
Comment 2•9 years ago
|
||
(In reply to Allen Short [:ashort] from comment #1)
> try 'cd fireplace' first to run npm in the fireplace checkout directory.
After running 'npm install' in fireplace directory, I got the following error:
sh: 1: node: not found
npm WARN This failure might be due to the use of legacy binary "node"
npm WARN For further explanations, please read
/usr/share/doc/nodejs/README.Debian
npm ERR! not ok code 0
I understand that this is happening because some other program is named 'node' in Debian system. How can I resolve this issue?
Sorry for the late reply.
Comment 3•9 years ago
|
||
First, you should determine if it's node or just some other program. Start with `which node` to determine where it is on your filesystem and then see what info you can find on what that program is.
If it is just a very old version of node, you could upgrade, or perhaps just remove it and reinstall a current version.
If you're using a package manager, you should be able to see exactly what it thinks "node" is on your system.
I'm going to close this bug, but if you resolve this issue and continue to have problems with building fireplace, feel free to reopen.
Status: UNCONFIRMED → RESOLVED
Closed: 9 years ago
Resolution: --- → INVALID
You need to log in
before you can comment on or make changes to this bug.
Description
•