我从这个链接下载了 Node:NodeJS ARM7l 我遵循了有关 dh_make 的以下指示:教程
最后我运行:
dpkg -i ~/Builds/Node/node_5.5.0-1_armhf.deb
我得到:
Selecting previously unselected package node.
(Reading database ... 31155 files and directories currently installed.)
Preparing to unpack .../Node/node_5.5.0-1_armhf.deb ...
Unpacking node (5.5.0-1) ...
Setting up node (5.5.0-1) ...
但是当我跑步时:
node -v
我得到:
-bash: node: command not found
我在 dpkg -i 命令之后尝试了 sudo apt-get -f install 和 install -f。
当我运行 dpkg -l (node 5.0)时我可以看到它
节点编译不正确吗?在 Raspberry Pi B 上使用 Raspbian。
答案1
我不太了解 raspbian,但 node 不是在存储库中的某个地方吗?那么只需使用 apt-get install node 即可下载吗?如果不行,请检查以下事项:
- 该文件确实存在吗?它应该在 /usr/sbin 或 /sbin 或类似位置。
- 该文件(节点)是否标记为可执行?
- 文件位置(例如 /usr/sbin)是否存在于您的 $PATH 中?
- 您是否可能需要 root 权限?请执行:sudo node