繁体   English   中英

403 安装 npm 时禁止 - Ubuntu 14.0

[英]403 Forbidden when installing npm - Ubuntu 14.0

我正在尝试在我的 ubuntu 14.0 服务器上安装 npm 和 Nodejs。

我已经使用sudo apt-get install nodejs但是当我安装npm我收到 403 Forbidden 错误。

    $ sudo apt-get install npm
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following extra packages will be installed:
gyp libc-ares-dev libjs-node-uuid libssl-dev libssl-doc libssl1.0.2
libv8-3.14-dev node-abbrev node-ansi node-archy node-async node-block-stream
node-combined-stream node-cookie-jar node-delayed-stream node-forever-agent
node-form-data node-fstream node-fstream-ignore node-github-url-from-git
node-glob node-graceful-fs node-gyp node-inherits node-ini
node-json-stringify-safe node-lockfile node-lru-cache node-mime
node-minimatch node-mkdirp node-mute-stream node-node-uuid node-nopt
node-normalize-package-data node-npmlog node-once node-osenv node-qs
node-read node-read-package-json node-request node-retry node-rimraf
node-semver node-sha node-sigmund node-slide node-tar node-tunnel-agent
node-which nodejs-dev zlib1g zlib1g-dev
Suggested packages:
node-hawk node-aws-sign node-oauth-sign node-http-signature
The following NEW packages will be installed:
gyp libc-ares-dev libjs-node-uuid libssl-dev libssl-doc libv8-3.14-dev
node-abbrev node-ansi node-archy node-async node-block-stream
node-combined-stream node-cookie-jar node-delayed-stream node-forever-agent
node-form-data node-fstream node-fstream-ignore node-github-url-from-git
node-glob node-graceful-fs node-gyp node-inherits node-ini
node-json-stringify-safe node-lockfile node-lru-cache node-mime
node-minimatch node-mkdirp node-mute-stream node-node-uuid node-nopt
node-normalize-package-data node-npmlog node-once node-osenv node-qs
node-read node-read-package-json node-request node-retry node-rimraf
node-semver node-sha node-sigmund node-slide node-tar node-tunnel-agent
node-which nodejs-dev npm zlib1g-dev
The following packages will be upgraded:
libssl1.0.2 zlib1g
2 upgraded, 53 newly installed, 0 to remove and 257 not upgraded.
Need to get 4,062 kB/5,590 kB of archives.
After this operation, 16.0 MB of additional disk space will be used.
Do you want to continue? [Y/n] y

那我说Y

WARNING: The following packages cannot be authenticated!
libssl1.0.2 libssl-dev libssl-doc
Install these packages without verification? [y/N] y

然后我说Y ,这就是我收到 Forbidden 错误的地方。

Err http://ppa.launchpad.net/ondrej/php5-5.6/ubuntu/ trusty/main libssl1.0.2 amd64 1.0.2h-1+deb.sury.org~trusty+1
403  Forbidden
Err http://ppa.launchpad.net/ondrej/php5-5.6/ubuntu/ trusty/main libssl-dev amd64 1.0.2h-1+deb.sury.org~trusty+1
403  Forbidden
Err http://ppa.launchpad.net/ondrej/php5-5.6/ubuntu/ trusty/main libssl-doc all 1.0.2h-1+deb.sury.org~trusty+1
403  Forbidden
E: Failed to fetch http://ppa.launchpad.net/ondrej/php5-5.6/ubuntu/pool/main/o/openssl/libssl1.0.2_1.0.2h-1+deb.sury.org~trusty+1                                                                                                            _amd64.deb  403  Forbidden

E: Failed to fetch http://ppa.launchpad.net/ondrej/php5-5.6/ubuntu/pool/main/o/openssl/libssl-dev_1.0.2h-1+deb.sury.org~trusty+1_                                                                                                            amd64.deb  403  Forbidden

E: Failed to fetch http://ppa.launchpad.net/ondrej/php5-5.6/ubuntu/pool/main/o/openssl/libssl-doc_1.0.2h-1+deb.sury.org~trusty+1_                                                                                                            all.deb  403  Forbidden

E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?

我相信我在安装这些软件包时遇到了问题:

libssl1.0.2 libssl-dev libssl-doc
sudo apt-key update
sudo apt-get update

它应该工作。

因为软件包libssl1.0.2 libssl-dev libssl-doc来自 http,所以来源不安全。 这就是ubuntu忽略下载和安装的原因。

使用此命令npm install npm@latest -g对我npm install npm@latest -g

此命令将在npm上安装最新版本

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM