node.js - instalar - install nodejs 8 mac
Errores al instalar pty.js(nodo) en OS X (1)
Tuve el mismo problema con un paquete de nodos diferente devtools-terminal
.
El problema es que un archivo de encabezado está configurado incorrectamente para OSX
como se explica aquí .
Este es el trabajo que uso:
-
mkdir /tmp/pty.js
-
git clone https://github.com/chjj/pty.js.git /tmp/pty.js
-
vi /tmp/pty.js/src/unix/pty.cc
- reemplace la línea 39:
#include <util.h>
con#include "/usr/include/util.h"
-
npm install -g /tmp/pty.js
- y ahora
npm install -g devtools-terminal
debería funcionar.
De esta forma, soluciona el problema en pty.js
y utiliza su copia local como dependencia del paquete con el que instalará.
¡Buena suerte!
Me he encontrado con un problema inusual cuando intento instalar pty.js usando node:
Si ejecuto npm install pty.js
recibo este error:
> node-gyp rebuild
CXX(target) Release/obj.target/pty/src/unix/pty.o
../src/unix/pty.cc:487:10: error: use of undeclared identifier ''openpty''
return openpty(amaster, aslave, name, (termios *)termp, (winsize *)winp);
^
../src/unix/pty.cc:533:10: error: use of undeclared identifier ''forkpty''
return forkpty(amaster, name, (termios *)termp, (winsize *)winp);
^
2 errors generated.
make: *** [Release/obj.target/pty/src/unix/pty.o] Error 1
gyp ERR! build error
gyp ERR! stack Error: `make` failed with exit code: 2
gyp ERR! stack at ChildProcess.onExit (/usr/local/lib/node_modules/npm/node_modules/node-gyp/lib/build.js:267:23)
gyp ERR! stack at ChildProcess.emit (events.js:98:17)
gyp ERR! stack at Process.ChildProcess._handle.onexit (child_process.js:809:12)
gyp ERR! System Darwin 13.3.0
gyp ERR! command "node" "/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
gyp ERR! cwd /Users/otiswright/Developer/Projects/Web/Hatchway/node_modules/pty.js
gyp ERR! node -v v0.10.29
gyp ERR! node-gyp -v v0.13.1
gyp ERR! not ok
npm ERR! [email protected] install: `node-gyp rebuild`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] install script.
npm ERR! This is most likely a problem with the pty.js 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 pty.js
npm ERR! There is likely additional logging output above.
npm ERR! System Darwin 13.3.0
npm ERR! command "node" "/usr/local/bin/npm" "install" "pty.js"
npm ERR! cwd /Users/otiswright/Developer/Projects/Web/Hatchway
npm ERR! node -v v0.10.29
npm ERR! npm -v 1.5.0-alpha-4
npm ERR! code ELIFECYCLE
npm ERR!
npm ERR! Additional logging details can be found in:
npm ERR! /Users/otiswright/Developer/Projects/Web/Hatchway/npm-debug.log
npm ERR! not ok code 0
Tengo node-gyp instalado ejecutando OS X con xcode + commandlines instaladas.
No estoy seguro de dónde está ocurriendo el problema? Podrían ser dependencias.