centos 5.9 및 기본 Python 2.4.3을 실행하는 VPS에 대한 터미널 액세스 권한이 있습니다. 나는 또한이 명령을 통해 파이썬 2.7.3을 설치 : (내가 사용하는 make altinstall
대신 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
그런 다음 다음 명령을 통해 소스에서 node.js를 설치했습니다.
python2.7 ./configure
make
make install
문제는 npm install
python> 2.4.3이 필요한 node.js 패키지를 사용 하려고 할 때이 오류가 발생한다는 것입니다.
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
"파이썬> = v2.5.0을 가리 키도록 --python 스위치를 어떻게 통과시켜야 합니까? "