Tuve la suerte de obtener una Raspberry Pi debajo del árbol este año y me he divertido un poco jugando con Node.js en el dispositivo. Sin embargo, Node.js es mucho más interesante cuando puede desplegar paquetes y conectarlos a sus aplicaciones, y aquí es donde tengo algunos problemas.
Si intento instalar NPM junto con Node.js con el siguiente comando:
sudo apt-get install nodejs npm
Obtuve el siguiente error:
pi@raspberrypi ~ $ sudo apt-get install nodejs npm
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
nodejs : Breaks: npm (< 1.1.4~dfsg-2~) but 1.1.4~dfsg-1 is to be installed
npm : Depends: node-semver but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
Soy bastante nuevo en cómo funciona la administración de paquetes con los sistemas operativos Linux basados en Debian y no sé mucho acerca de cómo la comunidad node.js ha estructurado sus paquetes específicos. Vale la pena señalar que la instalación de node.js en sí misma funciona bien, y si trato de instalar NPM solo, esto es lo que obtengo.
pi@raspberrypi ~ $ sudo apt-get install npm
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
npm : Depends: nodejs but it is not going to be installed
Depends: nodejs-dev but it is not going to be installed
Depends: node-request but it is not going to be installed
Depends: node-mkdirp but it is not going to be installed
Depends: node-minimatch but it is not going to be installed
Depends: node-semver but it is not going to be installed
Depends: node-ini but it is not going to be installed
Depends: node-graceful-fs but it is not going to be installed
Depends: node-abbrev but it is not going to be installed
Depends: node-nopt but it is not going to be installed
Depends: node-fstream but it is not going to be installed
Depends: node-rimraf but it is not going to be installed
Depends: node-tar but it is not going to be installed
Depends: node-which but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
No estoy seguro, pero mi instinto me dice que tiene algo que ver con el node-semver
paquete. Si instalo el nodejs
paquete solo y luego intento instalarlo, node-semver
este es el resultado que obtengo.
pi@raspberrypi ~ $ sudo apt-get install node-semver
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
node-semver : Depends: nodejs but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
¿Algún puntero?
/usr/local/bin
sería un poco más apropiado para local gestionado por un administrador enlaces simbólicos a un volcado de archivos gestionada administrador local en/opt
Adafruit proporciona un nodo (relativamente) actual y npm. Después de no encontrar una compilación útil, esto me funcionó con varios paquetes (express, body-parser, pg)
fuente
Ejecuto raspbian jessie en pi 3. El nodo viene preinstalado en la imagen pero npm no . Tuve desafíos para instalar npm y este hilo me ayudó a obtener pistas.
El error que recibí fue
Los siguientes 2 comandos en secuencia me ayudaron
fuente
Creo que la forma más fácil de obtener NPM (y la última versión de Node.js) en cualquier Raspberry PI (Zero to 3) es usar "NVM" ( Node Version Manager ).
Para instalar NVM:
Una vez instalado, puede descargar la última versión de Node.js en cualquier momento así:
¡Hecho!
Verifique que NPM esté instalado:
fuente
Si tiene problemas con los paquetes binarios, le recomiendo que lo compile usted mismo, de esta manera tendrá una mejor idea de si algo falla / los paquetes binarios pueden ser para un tipo diferente de procesador (no ARM).
Sugiero consultar https://gist.github.com/3301813 para obtener las instrucciones de compilación de Raspberry Pi NodeJS.
fuente
Como señaló Ben, sugeriría compilar Node.js por su cuenta en la Raspberry Pi. Desde 0.8.10 (más o menos) esto es posible sin más preámbulos. Simplemente
y eso es. Luego se instalará Node.js incluido
npm
.Funciona como un encanto :-)!
fuente
apt-get
, y luego compare esta versión con la versión actual de Node.js, y sabrá por qué no sugerí usarapt-get
... ;-)Todo lo que haces es escribir
¡Funcionó para mí y pude instalarlo sin errores y debería funcionar con un programa!
fuente
Intenta seguir esta publicación . Me las arreglo para ejecutar npm en / opt / node / npm, pero cuando lo copio a / usr / bin / se pierde 'npmlog'.
fuente