How to Install and Uninstall libluv.x86_64 Package on Fedora 39

Last updated: October 03,2024

1. Install "libluv.x86_64" package

Learn how to install libluv.x86_64 on Fedora 39

$ sudo dnf update $ sudo dnf install libluv.x86_64

2. Uninstall "libluv.x86_64" package

Please follow the step by step instructions below to uninstall libluv.x86_64 on Fedora 39:

$ sudo dnf remove libluv.x86_64 $ sudo dnf autoremove

3. Information about the libluv.x86_64 package on Fedora 39

Last metadata expiration check: 5:06:27 ago on Thu Mar 7 17:44:52 2024.
Available Packages
Name : libluv
Version : 1.48.0.0
Release : 1.fc39
Architecture : x86_64
Size : 75 k
Source : lua-luv-1.48.0.0-1.fc39.src.rpm
Repository : updates
Summary : Lua bindings for libluv as a library
URL : https://github.com/luvit/luv
License : Apache-2.0
Description :
: This library makes libuv available to lua scripts. It was made
: for the luvit project but should usable from nearly any lua
: project.
:
: The library can be used by multiple threads at once. Each thread
: is assumed to load the library from a different lua_State. Luv
: will create a unique uv_loop_t for each state. You can't share uv
: handles between states/loops.
:
: The best docs currently are the libuv docs themselves. Hopefully
: soon we'll have a copy locally tailored for lua.