iconv
でnpm
をインストールすると、次のエラーが発生しました。
[email protected] install/root/Dropbox/nodeApps/nodeApp/node_modules/iconv node-gyp rebuild
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
ただし、pythonをインストールし、コンソールから実行できます。
# python
Python 2.7.3 (default, May 9 2014, 12:18:32)
[GCC 4.8.2] on linux2
~/.bashrc
にPATH
を設定します:
export PYTHONPATH=$PYTHONPATH:/Python-2.7.3
export PATH=$PATH:/Python-2.7.3
完了. ~/.bashrc
Ubuntu 16.04でこの問題に遭遇した人には...node-gyp
は、Python 3.5.Xを使用できません。これは、16.04に付属するデフォルトのようです。私のインストールで。
上記の問題を次の方法で修正しました。
apt-get update
apt-get install python2.7
ln -s /usr/bin/python2.7 /usr/bin/python
今node-gyp
はpython
を探します。Python2.7のインストールにヒットし、正しくロードされます。
python
を入力して有効な応答を取得できるbashセッションで、which python
そして、python
バイナリのフルパスの場所に注意してください。その場所を取得し、PYTHONPATH
およびPATH
環境変数に配置します。ただし、末尾にpython
を付けない場合を除きます。
例えば、 which python
は私に与えます:
/usr/local/bin/python
だから私は書くだろう:
export PYTHONPATH=$PYTHONPATH:/usr/local/bin
export PATH=$PATH:/usr/local/bin
私の~/.bashrc
。
問題は~/.bashrc
がsshログインでロードされなかったためでした。 PATH
varsを~/.bash_profile
に入れましたが、大丈夫です