6
NPMのインストール中に別のバージョンのPythonを使用するにはどうすればよいですか?
CentOS 5.9を実行し、デフォルトのPython 2.4.3がインストールされているVPSにターミナルアクセスできます。次のコマンドを使用してpython 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 installpython> 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 …