-
Notifications
You must be signed in to change notification settings - Fork 284
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
node js arm 7 cross compile #629
Comments
I assume you're running Raspbian not Windows 7 right? Which file did you put in Assuming you're using the terminal, you can navigate to ls # Should show node npm
./node # Runs node |
yes I did the same way however it provides error by file does not exist |
What is the output of the |
node npm |
What about |
Short answer:To install manually do: wget https://nodejs.org/dist/v6.10.3/node-v6.10.3-linux-armv7l.tar.gz
tar -xf node-v6.10.3-linux-armv7l.tar.gz --directory /usr/local --strip-components 1 This will put the which node
which npm
node --version
npm --version Alternatives:If you want to use a package manager, see this guide. For older Linux distros you might need to see these instructions. If you want to install node manually, there is no "installation" on Linux per se, you just need to extract the tarball, and make sure the I find nvm is useful for managing node installations (it will download, extract, and add to path for you). If you want to do things manually, you can do something like: |
closing as answered, please re-open if this is still outstanding. |
Im having issues using files that have been provided by Node js for arm7 (android).
Currently, Im trying to run node js files in arm7.
However, Im not sure how should I use the files that have been provided.
I have tried putting files in /system/bin and command node by running node file in node-v0.12.0-linux-arm-pi/bin.
However, it provides error by the node file does not exist.
How should I solve this problem?
The text was updated successfully, but these errors were encountered: