【发布时间】:2016-12-31 02:30:23
【问题描述】:
我刚刚创建了一个new package。
我现在第一次尝试像这样将它发布到 NPM:
ole@MKI:~/Sandbox/pli$ npm publish --access public
npm ERR! publish Failed PUT 404
npm ERR! Linux 3.13.0-93-generic
npm ERR! argv "/home/ole/.nvm/versions/v6.4.0/bin/node" "/home/ole/.nvm/versions/v6.4.0/bin/npm" "publish" "--access" "public"
npm ERR! node v6.4.0
npm ERR! npm v3.10.3
npm ERR! code E404
npm ERR! 404 Not found : @supericium/pli
npm ERR! 404
npm ERR! 404 '@supericium/pli' is not in the npm registry.
npm ERR! 404 You should bug the author to publish it (or use the name yourself!)
npm ERR! 404
npm ERR! 404 Note that you can also install from a
npm ERR! 404 tarball, folder, http url, or git url.
npm ERR! Please include the following file with any support request:
npm ERR! /home/ole/Sandbox/pli/npm-debug.log
我尝试更新 NodeJS 和 NPM 以确保我拥有最新版本,它们是:
ole@MKI:~/Sandbox/pli$ node --version
v6.4.0
ole@MKI:~/Sandbox/pli$ npm --version
3.10.3
想法?
【问题讨论】:
-
是的,这没有任何意义。无法创建包,因为它不存在。这些答案都不能解决问题。
-
@Distortum 尝试在详细模式下运行
publish- 以一种非常令人沮丧的方式,在正常模式下,许多问题以 404 告终,而真正的原因可能是由于各种问题而导致的 403。通常运行详细模式会使问题变得明显。
标签: node.js npm npm-publish