使 Node.js 工作

使 Node.js 工作

我的电脑运行的是 Ubuntu 14.04.4 LTS。我试图让一个简单的 hello world 文件与 node 一起工作,但失败了。我运行了命令,node hello.js但什么也没发生。我运行了apt-get remove nodejs然后apt-get install nodejs最后apt-get install npm这似乎有效,但是当我运行时node -v什么也没发生。没有错误,什么都没有。which node输出/usr/sbin/node我可以做什么来尝试解决这个问题?

答案1

Ubuntu自带的默认nodejs可以通过以下方式执行:

nodejs -v

如果你使用https://github.com/nodesource/distributions,你将能够使用

node -v

答案2

相关内容