@linqu

Nodejs npm: как победить ошибку при попытке установить модуль pg-native?

Пытаюсь поставить модуль pg-native, выдает ошибку:
# npm i pg-native

> libpq@1.8.5 install /var/www/v/node_modules/libpq
> node-gyp rebuild

You need to install postgresql-server-dev-X.Y for building a server-side extension or libpq-dev for building a client-side application.
gyp: Call to '/usr/bin/pg_config --libdir' returned exit status 1 while in binding.gyp. while trying to load binding.gyp
gyp ERR! configure error
gyp ERR! stack Error: `gyp` failed with exit code: 1
gyp ERR! stack     at ChildProcess.onCpExit (/usr/local/lib/node_modules/npm/node_modules/node-gyp/lib/configure.js:305:16)
gyp ERR! stack     at emitTwo (events.js:106:13)
gyp ERR! stack     at ChildProcess.emit (events.js:191:7)
gyp ERR! stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:215:12)
gyp ERR! System Linux 3.16.0-4-amd64
gyp ERR! command "/usr/bin/nodejs" "/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
gyp ERR! cwd /var/www/v/node_modules/libpq
gyp ERR! node -v v6.6.0
gyp ERR! node-gyp -v v3.3.1
gyp ERR! not ok
/var/www/v
├── pg@6.1.0
├── promise@7.1.1
└── socket.io@1.4.8

npm WARN enoent ENOENT: no such file or directory, open '/var/www/v/package.json'
npm WARN v No description
npm WARN v No repository field.
npm WARN v No README data
npm WARN v No license field.
npm ERR! Linux 3.16.0-4-amd64
npm ERR! argv "/usr/bin/nodejs" "/usr/local/bin/npm" "i" "pg-native"
npm ERR! node v6.6.0
npm ERR! npm  v3.9.2
npm ERR! code ELIFECYCLE

npm ERR! libpq@1.8.5 install: `node-gyp rebuild`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the libpq@1.8.5 install script 'node-gyp rebuild'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the libpq 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 information on how to open an issue for this project with:
npm ERR!     npm bugs libpq
npm ERR! Or if that isn't available, you can get their info via:
npm ERR!     npm owner ls libpq
npm ERR! There is likely additional logging output above.

npm ERR! Please include the following file with any support request:
npm ERR!     /var/www/v/npm-debug.log


В чем может быть дело?
  • Вопрос задан
  • 2302 просмотра
Решения вопроса 1
@linqu Автор вопроса
Разобрался, просто внимательно нужно читать:
You need to install postgresql-server-dev-X.Y for building a server-side extension or libpq-dev for building a client-side application.
Ответ написан
Комментировать
Пригласить эксперта
Ответы на вопрос 1
@alexmost113
sudo apt-get install libpq-dev
Ответ написан
Комментировать
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Войти через центр авторизации
Похожие вопросы