script programa interprete ejecutar desde consola compilar archivos python node.js npm ubuntu-server

programa - No se puede encontrar el pitón ejecutable de Python



interprete de python (3)

En su sesión de bash en la que solo puede escribir python y obtener una respuesta válida, escriba en which python y anote la ubicación de la ruta completa del binario de python . Tome esa ubicación y PYTHONPATH las variables de entorno PYTHONPATH y PATH , excepto sin la python al final.

Por ejemplo, which python me da:

/usr/local/bin/python

por lo que escribiría:

export PYTHONPATH=$PYTHONPATH:/usr/local/bin export PATH=$PATH:/usr/local/bin

en mi ~/.bashrc .

Cuando instalo iconv con npm obtuve el siguiente error:

[email protected] install / root / Dropbox / nodeApps / nodeApp / node_modules / iconv node-gyp reconstruir

gyp ERR! configure error gyp ERR! stack Error: Can''t find Python executable "python", you can set the PYTHON env variable. gyp ERR! stack at failNoPython (/usr/local/lib/node_modules/npm/node_modules/node-gyp/lib/configure.js:103:14) gyp ERR! stack at /usr/local/lib/node_modules/npm/node_modules/node-gyp/lib/configure.js:42:11 gyp ERR! stack at F (/usr/local/lib/node_modules/npm/node_modules/which/which.js:43:25) gyp ERR! stack at E (/usr/local/lib/node_modules/npm/node_modules/which/which.js:46:29) gyp ERR! stack at /usr/local/lib/node_modules/npm/node_modules/which/which.js:57:16 gyp ERR! stack at Object.oncomplete (fs.js:107:15) gyp ERR! System Linux 3.8.0-19-generic gyp ERR! command "node" "/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild" gyp ERR! cwd /root/Dropbox/nodeApps/nodeApp/node_modules/iconv gyp ERR! node -v v0.10.28 gyp ERR! node-gyp -v v0.13.0 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 iconv 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 iconv npm ERR! There is likely additional logging output above. npm ERR! System Linux 3.8.0-19-generic npm ERR! command "node" "/usr/local/bin/npm" "i" npm ERR! cwd /root/Dropbox/nodeApps/nodeApp npm ERR! node -v v0.10.28 npm ERR! npm -v 1.4.10 npm ERR! code ELIFECYCLE npm ERR! npm ERR! Additional logging details can be found in: npm ERR! /root/Dropbox/nodeApps/nodeApp/npm-debug.log npm ERR! not ok code 0

Aunque instalé python y puedo ejecutarlo desde la consola:

# python Python 2.7.3 (default, May 9 2014, 12:18:32) [GCC 4.8.2] on linux2

y configurar PATH en ~/.bashrc :

export PYTHONPATH=$PYTHONPATH:/Python-2.7.3 export PATH=$PATH:/Python-2.7.3

y hecho . ~/.bashrc


Para cualquier persona que encuentre este problema en Ubuntu 16.04 ...
node-gyp no puede usar Python 3.5.X, que parece ser el predeterminado que se envía con 16.04. Leí en algún lugar que se suponía que 16.04 debía incluir Python2 también, pero no lo encuentro en mi instalación.

He solucionado el problema anterior por:

apt-get update apt-get install python2.7 ln -s /usr/bin/python2.7 /usr/bin/python

Ahora, cuando node-gyp va en busca de python , llegará a su instalación y carga de Python2.7 correctamente.


el problema se debió a que ~/.bashrc no se cargó en el inicio de sesión ssh. Puse VARAS de PATH en ~/.bash_profile y está bien