How to Install and Uninstall lua-luarepl.noarch Package on Fedora 39

Last updated: November 25,2024

1. Install "lua-luarepl.noarch" package

Please follow the guidance below to install lua-luarepl.noarch on Fedora 39

$ sudo dnf update $ sudo dnf install lua-luarepl.noarch

2. Uninstall "lua-luarepl.noarch" package

This guide let you learn how to uninstall lua-luarepl.noarch on Fedora 39:

$ sudo dnf remove lua-luarepl.noarch $ sudo dnf autoremove

3. Information about the lua-luarepl.noarch package on Fedora 39

Last metadata expiration check: 2:38:20 ago on Thu Mar 7 17:44:52 2024.
Available Packages
Name : lua-luarepl
Version : 0.10
Release : 3.fc39
Architecture : noarch
Size : 27 k
Source : lua-luarepl-0.10-3.fc39.src.rpm
Repository : fedora
Summary : REPL.lua - a reusable Lua REPL written in Lua
URL : https://github.com/hoelzro/lua-repl
License : MIT
Description : REPL.lua has two uses:
:
: - An alternative to the standalone interpreter included with Lua, one that
: supports things like plugins, tab completion, and automatic insertion of
: `return` in front of expressions.
:
: - A REPL library you may embed in your application, to provide all of the
: niceties of the standalone interpreter included with Lua and then some.
:
: Many software projects have made the choice to embed Lua in their projects to
: allow their users some extra flexibility. Some of these projects would also
: like to provide a Lua REPL in their programs for debugging or rapid development.
: Most Lua programmers are familiar with the standalone Lua interpreter as a
: Lua REPL; however, it is bound to the command line. Until now, Lua programmers
: would have to implement their own REPL from scratch if they wanted to include
: one in their programs. This project aims to provide a REPL implemented in pure
: Lua that almost any project can make use of.
:
: This library also includes an example application (rep.lua), which serves as an
: alternative to the standalone interpreter included with Lua. If the
: lua-linenoise library is installed, it uses linenoise for history and
: tab completion; otherwise, it tries to use rlwrap for basic line editing.
: If you would like the arrow keys to work as expected rather than printing things
: like `^[[A`, please install the lua-linenoise library or the rlwrap program.