Ho accesso terminale a un VPS con Centos 5.9 e installato Python 2.4.3 predefinito. Ho anche installato Python 2.7.3 tramite questi comandi: (ho usato make altinstall
invece di 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
quindi ho installato node.js dall'origine tramite questi comandi:
python2.7 ./configure
make
make install
Il problema è che quando uso npm install
e provo ad installare un pacchetto node.js che richiede python> 2.4.3 ottengo questo errore:
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
come devo "passare l'opzione --python per puntare a Python> = v2.5.0" ?