web-dev-qa-db-fra.com

Comment installer libuv sur Ubuntu?

Sudo apt-get install libuv

$ Sudo apt-get install libuv
[Sudo] username ...
It fails to find package and install.

Libuv est-il inclus dans certains autres packages?

5
Hind Forsum

Vous pouvez utiliser apt-cache search pour rechercher des packages. Par exemple, sur Ubuntu Yakkety, la commande apt-cache search libuv renvoie actuellement le texte suivant:

libuv0.10 - asynchronous event notification library - runtime library
libuv0.10-dbg - asynchronous event notification library - debugging symbols
libuv0.10-dev - asynchronous event notification library - development files
libuv1 - asynchronous event notification library - runtime library
libuv1-dbg - asynchronous event notification library - debugging symbols
libuv1-dev - asynchronous event notification library - development files
lua-luv - libuv bindings for lua
lua-luv-dev - libuv bindings for lua

Assurez-vous que votre cache de paquets est à jour en exécutant d'abord apt-get update!

6
csm

Installez libuv sur Ubuntu 14.04.

Sudo add-apt-repository ppa:acooks/libwebsockets6
Sudo apt-get update
Sudo apt-get install libuv1.dev
2
manish