J'ai un accès terminal à un VPS exécutant centos 5.9 et python 2.4.3 par défaut installé. J'ai également installé python 2.7.3 via ces commandes: (j'ai utilisé à la make altinstall
place de make install
)
wget http://www.python.org/ftp/python/2.7.3/Python-2.7.3.tgz
tar -xf Python-2.7.3.tgz
cd Python-2.7.3
./configure
make
make altinstall
puis j'ai installé node.js depuis la source via ces commandes:
python2.7 ./configure
make
make install
Le problème est que lorsque j'utilise npm install
et essaie d'installer un package node.js qui nécessite python> 2.4.3, j'obtiens cette erreur:
gyp ERR! configure error
gyp ERR! stack Error: Python executable "python" is v2.4.3, which is not supported by gyp.
gyp ERR! stack You can pass the --python switch to point to Python >= v2.5.0 & < 3.0.0.
gyp ERR! stack at failPythonVersion (/usr/local/lib/node_modules/npm/node_modules/node-gyp/lib/configure.js:125:14)
gyp ERR! stack at /usr/local/lib/node_modules/npm/node_modules/node-gyp/lib/configure.js:114:9
comment dois-je "passer le commutateur --python pour pointer vers Python> = v2.5.0" ?