我正在尝试在Ubuntu 12.10上安装Node.js,但终端显示有关丢失软件包的错误。我试过这个:
sudo apt-get install python-software-properties
sudo add-apt-repository ppa:chris-lea/node.js
sudo apt-get update
sudo apt-get install nodejs npm
但是当我来到最后一行时sudo apt-get install nodejs npm
显示了这个错误:
Failed to install some packages. This may mean that
you requested an impossible situation or if you are using the distribution
distribution that some required packages have not yet been created or been
been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
nodejs: Conflicts: npm
E: Failed to correct problems, you have held broken packages.
然后我卸载了ppa:chris-lea/node.js
,我正在尝试第二个选项:
sudo apt-get install node.js
sudo apt-add-repository ppa:chris-lea/node.js
sudo apt-get update
sudo apt-get install nodejs npm
同样的错误,终端显示npm is the latest version
,但也向我显示了我在顶部显示的文字。我认为问题是ppa:chris-lea/node.js
,但我不知道如何解决它。
答案 0 :(得分:472)
只需按照here给出的说明操作:
安装示例:
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
它在当前稳定的Ubuntu上安装当前稳定的Node。量子 (12.10)用户可能需要安装软件属性 - 常用 用于
add-apt-repository
命令的包:sudo apt-get install software-properties-common
从Node.js v0.10.0开始,来自Chris Lea的repo的nodejs包 包括npm和nodejs-dev。
不要仅仅sudo apt-get install nodejs npm
sudo apt-get install nodejs
答案 1 :(得分:40)
截至今天,您可以使用以下命令安装它:
sudo apt-get install nodejs
答案 2 :(得分:15)
npm与node.js一起自动安装在最新版本的节点中。当您在终端中输入node --version
和npm --version
时,您会看到什么?
您也可以使用npm本身升级npm
[sudo] npm install -g npm
答案 3 :(得分:13)
我的apt-get
已经过时了,所以我不得不从源代码安装。这对我有用:
# get the latest version from nodejs.org. At the time of this writing, it was 0.10.24
curl -o ~/node.tar.gz http://nodejs.org/dist/v0.10.24/node-v0.10.24.tar.gz
cd
tar -zxvf node.tar.gz
cd node-v0.6.18
./configure && make && sudo make install
这些步骤主要来自joyent's installation wiki
答案 4 :(得分:8)
这是轻松安装NODE.JS的最佳方式。对于Ubuntu 12.04,13.04和14.04
,这也是实际的添加节点js存储库
[sudo] apt-get install python-software-properties
[sudo] apt-add-repository ppa:chris-lea/node.js
[sudo] apt-get update
node.js安装
[sudo] apt-get install nodejs
现在检查node.js版本
node -v
<强>输出强>
v0.10.20
此命令应安装npm。
npm install
检查npm版本
npm -v
<强>输出强>
1.4.3
如果出于某种原因,如果您看到未安装npm,则可以尝试运行:
[sudo] apt-get install npm
要更新npm,您可以尝试运行:
[sudo] npm install -g npm
答案 5 :(得分:4)
您可以使用nvm安装nodejs。它允许您使用不同版本而不会发生冲突。
答案 6 :(得分:4)
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.19.0/install.sh | bash
nvm install v0.10.33
只需使用nvm进行节点版本控制nvm
答案 7 :(得分:3)
您也可以像这样
从源代码编译它git clone git://github.com/ry/node.git
cd node
./configure
make
sudo make install
答案 8 :(得分:3)
sudo apt-get install g++ curl libssl-dev apache2-utils
sudo apt-get install git-core
git clone git://github.com/ry/node.git
cd node
./configure
make
sudo make install
答案 9 :(得分:3)
按照NodeSource上的here给出的说明,该指令致力于为Node.js创建可持续的生态系统
对于Node.js&gt; = 4.X
# Using Ubuntu
curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash -
sudo apt-get install -y nodejs
# Using Debian, as root
curl -sL https://deb.nodesource.com/setup_4.x | bash -
apt-get install -y nodejs
答案 10 :(得分:3)
现在您可以简单地安装:
sudo apt-get install nodejs
sudo apt-get install npm
确保预装了python和c。如果没有执行:
sudo apt-get install python g++ make
答案 11 :(得分:2)
我个人这样做:
sudo apt-get install python g++ make
wget http://nodejs.org/dist/node-latest.tar.gz
tar xvfvz node-latest.tar.gz
cd node-v0.12.0
./configure
make
sudo make install
如果要安装特定版本而不是从nodejs站点下载所需版本并执行最后一个树步骤 我强烈建议不要使用发行版市场的默认nodejs软件包,因为它可能已经过时了。 (即在ubuntu市场上写这篇文章的时间是v0.10.25,与最新版本(v0.12.0)相比过时了。)
答案 12 :(得分:2)
Node.js在所有当前支持的Ubuntu版本中都可以作为快照包使用。特定于Node.js,开发人员可以从当前支持的版本中选择一个,并直接从NodeSource获得定期自动更新。 Node.js版本6,8,9,10,11和12目前可用,Snap Store在Node.js发布的几小时或几分钟内更新。
可以使用单个命令安装节点,例如:
sudo snap install node --classic --channel 11/stable
可以通过命令node
访问节点捕捉,例如:
$ node -v v11.5.0
最新版本的npm将作为节点快照的一部分安装。 npm应该在普通shell中的节点repl之外运行。安装节点快照后,运行以下命令以启用npm update checking:
sudo chown -R $USER:$(id -gn $USER) /home/your-username/.config
使用您自己的用户名替换上述命令中的 your-username
。然后运行npm -v
以检查npm的版本是否是最新的。作为示例,我检查了npm是最新的,使用命令npm list yarn
检查已安装的名为yarn的软件包的版本,然后使用命令{{1}将现有的yarn软件包更新为最新版本}
用户可以随时在Node.js版本之间切换,而无需涉及其他工具,如nvm(节点版本管理器),例如:
npm update yarn
用户可以测试可以从当前跟踪Node.js版本12的最新边缘通道安装的Node.js的最新版本,方法是切换:
sudo snap refresh node --channel=11/stable
此方法仅建议那些愿意参与上游测试和错误报告的用户。
Release LTS Status Codename LTS Start Maintenance Start Maintenance End 6.x Active Boron 2016-10-18 April 2018 April 2019 7.x No LTS 8.x Active Carbon 2017-10-31 April 2019 December 2019 9.x No LTS 10.x Active Dubnium October 2018 April 2020 April 2021 11.x No LTS 2019-04-01 2019-06-30 12.x No LTS 2019-10-22 2021-04-01 2022-04-01
答案 13 :(得分:1)
在Ubuntu 12.10
或14.04 LTS
或16.04.1 LTS
上安装Node.js
请避免在Node.js
上使用apt-get
安装Ubuntu
。如果您已经使用内置软件包管理器安装了Node.js,请将其删除。 (sudo apt-get purge nodejs && sudo apt-get autoremove && sudo apt-get autoclean
)
Linux上的安装过程与OSX
上的安装过程相同。
使用提供的脚本:
$ curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.3/install.sh | bash
$ nvm list
$ nvm ls-remote
$ nvm install 6.4.0
$ nvm use 6.4.0
$ nvm alias default 6.4.0
$ node -v
$ npm install -g npm
$ npm -v
还有一件事!不要忘记运行以下命令,这会增加inotify监视的数量。
$ echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
希望这对你有帮助!
答案 14 :(得分:1)
这里使用快速生成器
创建第一个程序的完整描述Ubuntu的软件包管理器
要通过apt-get安装Node和npm,请运行以下命令:
sudo apt-get update
sudo apt-get install nodejs
sudo ln -s /usr/bin/nodejs /usr/bin/node
sudo apt-get install npm
Express应用程序生成器
$ npm install express-generator -g
使用-h选项显示命令选项:
$ express -h
Usage: express [options] [dir]
Options:
-h, --help output usage information
-V, --version output the version number
-e, --ejs add ejs engine support (defaults to jade)
--hbs add handlebars engine support
-H, --hogan add hogan.js engine support
-c, --css <engine> add stylesheet <engine> support (less|stylus|compass|sass) (defaults to plain css)
--git add .gitignore
-f, --force force on non-empty directory
例如,以下内容在中创建名为myapp的Express应用程序 当前工作目录:
$ express myapp
create : myapp
create : myapp/package.json
create : myapp/app.js
create : myapp/public
create : myapp/public/javascripts
create : myapp/public/images
create : myapp/routes
create : myapp/routes/index.js
create : myapp/routes/users.js
create : myapp/public/stylesheets
create : myapp/public/stylesheets/style.css
create : myapp/views
create : myapp/views/index.jade
create : myapp/views/layout.jade
create : myapp/views/error.jade
create : myapp/bin
create : myapp/bin/www
然后安装依赖项:
$ cd myapp
$ npm install
使用此命令运行应用程序:
$ DEBUG=myapp:* npm start
然后在浏览器中加载http://localhost:3000/以访问该应用。
生成的应用程序具有以下目录结构:
├── app.js
├── bin
│ └── www
├── package.json
├── public
│ ├── images
│ ├── javascripts
│ └── stylesheets
│ └── style.css
├── routes
│ ├── index.js
│ └── users.js
└── views
├── error.jade
├── index.jade
└── layout.jade
7 directories, 9 files
答案 15 :(得分:0)
对于最新的nodejs
sudo apt-get install curl
curl -sL https://deb.nodesource.com/setup_13.x | sudo -E bash -
sudo apt-get install nodejs
node -v
npm -v
答案 16 :(得分:0)
Node.js软件包。您可以根据需要选择要在系统上安装哪个版本。
使用当前版本:在本教程的最新更新中,Node.js 13是当前可用的Node.js版本。
sudo apt-get install curl
curl -sL https://deb.nodesource.com/setup_13.x | sudo -E bash -
使用LTS发行版:在本教程的最新更新中,Node.js 12.x是可用的LTS发行版。
sudo apt-get install curl
curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
您可以成功将Node.js PPA添加到Ubuntu系统。现在使用apt-get在Ubuntu上执行以下命令install Node。这还将通过node.js安装NPM。此命令还会在您的系统上安装许多其他从属软件包。
sudo apt-get install nodejs
在安装node.js之后,请验证并检查已安装的版本。您可以在node.js官方网站上找到有关当前版本的更多详细信息。
node -v
v13.0.1
还要检查npm版本
npm -v
6.12.0
答案 17 :(得分:0)
非常简单:
sudo apt install nodejs
,然后输入:
nodejs
使用。
答案 18 :(得分:0)
sudo apt install nodejs
sudo apt install npm
curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -
sudo apt-get install -y nodejs