在Ubuntu中安装没有sudo的NodeJS

时间:2015-06-24 11:20:29

标签: node.js ubuntu

我已经关注node-and-npm-in-30-seconds.sh

之前我曾经使用Yeoman和bower与NodeJS创建AngularJS应用程序。那次我用 sudo 来安装所有。

这就是我所遵循的

sudo apt-get install python-software-properties python g++ make
sudo add-apt-repository ppa:chris-lea/node.js
sudo apt-get update
sudo apt-get install nodejs

sudo apt-get install git-core

最近我尝试创建一个AngularJS应用程序,但它没有正确创建。然后我发现在安装nodejs,yeoman和Bower时我不应该使用sudo。

我在这里搜索并找到了解决方案node-and-npm-in-30-seconds.sh

首先我卸载了NodeJS

sudo apt-get remove nodejs

然后按照链接

中提供的第一个选项进行操作
echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc
. ~/.bashrc
mkdir ~/local
mkdir ~/node-latest-install
cd ~/node-latest-install
curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1
./configure --prefix=~/local
make install # ok, fine, this step probably takes more than 30 seconds...
curl https://www.npmjs.org/install.sh | sh

最后一个命令没有用。它显示了

$ curl https://www.npmjs.org/install.sh | sh
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100    51  100    51    0     0     63      0 --:--:-- --:--:-- --:--:--    63
sh: 1: Moved: not found

我用Google搜索并尝试了this SO answer

中的以下内容
curl -O -L https://npmjs.org/install.sh
sh install.sh

显示以下错误

npm cannot be installed without node.js.
Install node first, and then try again.

Maybe node is installed, but not in the PATH?
Note that running as sudo can change envs.

PATH=/home/myuser/local/bin:/usr/lib/jvm/java-7-oracle/bin:/usr/lib/jvm/java-7-oracle/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games

为什么会这样?我该如何解决?谢谢。

1 个答案:

答案 0 :(得分:9)

好的,我已经为我努力了

echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc
. ~/.bashrc
mkdir ~/local
mkdir ~/node-latest-install
cd ~/node-latest-install
curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1
./configure --prefix=$HOME/local
make install
curl -L https://www.npmjs.com/install.sh | sh
相关问题