Heroku安装错误

时间:2016-02-03 19:48:06

标签: node.js macos heroku heroku-toolbelt

我一直在尝试让heroku在我的Mac上工作。我已经安装了Heroku-Toolbelt。但是,当我运行" heroku登录"在zsh控制台上,我收到此错误:

$ heroku login
heroku-cli: Installing core plugins...
 ▸    npm ERR! Darwin 15.3.0
 ▸    npm ERR! argv "/Users/Deepen/.heroku/node-v5.4.1-darwin-x64/bin/node"  
"/Users/Deepen/.heroku/node-v5.4.1-darwin-x64/lib/node_modules/npm/cli.js"   
"remove" "heroku-apps" "heroku-cli-addons" "heroku-fork" "heroku-git" 
"heroku-local" "heroku-run" "heroku-spaces" "heroku-status"
 ▸    npm ERR! node v5.4.1
 ▸    npm ERR! npm  v3.3.10
 ▸    npm ERR! code MODULE_NOT_FOUND
 ▸
 ▸    npm ERR! Cannot find module 'npm-autoinit/autoinit'
 ▸    npm ERR!
 ▸    npm ERR! If you need help, you may report this error at:
 ▸    npm ERR!     <https://github.com/npm/npm/issues>
 ▸    npm WARN ENOENT ENOENT: no such file or directory, open '/Users/Deepen/.heroku/package.json'
 ▸    npm WARN EPACKAGEJSON .heroku No description
 ▸    npm WARN EPACKAGEJSON .heroku No repository field.
 ▸    npm WARN EPACKAGEJSON .heroku No README data
 ▸    npm WARN EPACKAGEJSON .heroku No license field.
 ▸    npm ERR! Darwin 15.3.0
 ▸    npm ERR! argv "/Users/Deepen/.heroku/node-v5.4.1-darwin-x64/bin/node"   "/Users/Deepen/.heroku/node-v5.4.1-darwin-x64/lib/node_modules/npm/cli.js" "remove" "heroku-apps" "heroku-cli-addons" "heroku-fork" "heroku-git" "heroku-local" "heroku-run" "heroku-spaces" "heroku-status"
 ▸    npm ERR! node v5.4.1
 ▸    npm ERR! npm  v3.3.10
 ▸
 ▸    npm ERR! Callback called more than once.
 ▸    npm ERR!
 ▸    npm ERR! If you need help, you may report this error at:
  ▸    npm ERR!     
 ▸
 ▸    npm ERR! Please include the following file with any support request:
 ▸    npm ERR!     /Users/Deepen/.heroku/npm-debug.log
▸    exit status 1
heroku-cli: Installing core plugins (retrying)...

2 个答案:

答案 0 :(得分:6)

我刚刚发送了一个修补程序,请问heroku update然后再试一次?

答案 1 :(得分:0)

这是我采取的措施。

我检查了我的系统(Mac El Capitan)上安装了节点5.9.1的位置:

  % which node
  ~/.nvm/versions/node/v5.9.1 

然后我复制了〜/ .heroku下的整个内容并更改了目录的名称:

cp -r ~/.nvm/versions/node/v5.9.1 ~/.heroku
mv ~/.heroku/v5.9.1 ~/.heroku/node-v5.9.1-darwin-x64 

这对我来说很有用,希望它能帮助别人,因为我花了很长时间才弄明白。