Erros na instalação do Drywall

0

Estou tentando instalar o drywall e estou recebendo muitos erros

C:\Users\zach\Desktop\Node.js\drywall\node_modules\bcrypt>if not defined npm_con      fig_node_gyp (node "C:\Program Files\nodejs\node_modules\npm\bin\node-gyp-bin\.      .\..\node_modules\node-gyp\bin\node-gyp.js" rebuild )  else (node  rebuild )
gyp ERR! configure error
gyp ERR! stack Error: Can't find Python executable "python", you can set the PYT       HON env variable.
gyp ERR! stack     at failNoPython (C:\Program Files\nodejs\node_modules\npm\nod          e_modules\node-gyp\lib\configure.js:116:14) 
gyp ERR! stack     at C:\Program Files\nodejs\node_modules\npm\node_modules\node          -gyp\lib\configure.js:71:11
gyp ERR! stack     at FSReqWrap.oncomplete (fs.js:82:15)
gyp ERR! System Windows_NT 10.0.10240
gyp ERR! command "C:\Program Files\nodejs\node.exe" "C:\Program Files\nodej      s\node_modules\npm\node_modules\node-gyp\bin\node-gyp.js" "rebuild"
gyp ERR! cwd C:\Users\zach\Desktop\Node.js\drywall\node_modules\bcrypt
gyp ERR! node -v v4.1.1
gyp ERR! node-gyp -v v3.0.3
gyp ERR! not ok
npm ERR! Windows_NT 10.0.10240
npm ERR! argv "C:\Program Files\nodejs\node.exe" "C:\Program Files\nodejs\               node_modules\npm\bin\npm-cli.js" "install"
npm ERR! node v4.1.1
npm ERR! npm  v2.14.4
npm ERR! code ELIFECYCLE

npm ERR! [email protected] install: 'node-gyp rebuild'
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] install script 'node-gyp rebuild'.
npm ERR! This is most likely a problem with the bcrypt package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     node-gyp rebuild
npm ERR! You can get their info via:
npm ERR!     npm owner ls bcrypt
npm ERR! There is likely additional logging output above.

npm ERR! Please include the following file with any support request:
npm ERR!     C:\Users\zach\Desktop\Node.js\drywall\npm-debug.log

Eu deveria estar preocupado com qualquer um desses? Se alguém souber de um guia sobre como solucionar esses erros (procurei bastante e não consegui encontrar um), por favor, avise-me. Obrigada!

    
por Zach Konon 31.10.2015 / 17:38

1 resposta

0

Parece que a etapa configure / install para bcrypt está falhando devido a uma dependência ausente no python.

gyp ERR! stack Error: Can't find Python executable "python", you can set the PYT HON env variable.

bcrypt0.8.5 tem as seguintes dependências,

  • NodeJs
  • gyp de nó
  • Python 2.x
  • OpenSSL

-Source

Verifique se todas as dependências do bcrypts estão instaladas e tente novamente.

    
por 31.10.2015 / 18:53