How to Install and Uninstall python3-lark.noarch Package on Fedora 39

Last updated: February 06,2025

1. Install "python3-lark.noarch" package

This guide covers the steps necessary to install python3-lark.noarch on Fedora 39

$ sudo dnf update $ sudo dnf install python3-lark.noarch

2. Uninstall "python3-lark.noarch" package

Please follow the steps below to uninstall python3-lark.noarch on Fedora 39:

$ sudo dnf remove python3-lark.noarch $ sudo dnf autoremove

3. Information about the python3-lark.noarch package on Fedora 39

Last metadata expiration check: 4:48:37 ago on Thu Mar 7 11:44:58 2024.
Available Packages
Name : python3-lark
Version : 1.1.7
Release : 1.fc39
Architecture : noarch
Size : 375 k
Source : python-lark-1.1.7-1.fc39.src.rpm
Repository : fedora
Summary : Lark is a modern general-purpose parsing library for Python
URL : https://github.com/lark-parser/lark
License : MIT AND MPL-2.0 AND GPL-2.0-or-later
Description : Lark is a modern general-purpose parsing library for Python. With Lark, you can
: parse any context-free grammar, efficiently, with very little code.
:
: Main Features:
: - Builds a parse-tree (AST) automagically, based on
: the structure of the grammar
: - Earley parser
: - Can parse all context-free grammars
: - Full support for ambiguous grammars
: - LALR(1) parser
: - Fast and light, competitive with PLY
: - Can generate a stand-alone parser
: - CYK parser, for highly ambiguous grammars
: - EBNF grammar
: - Unicode fully supported
: - Automatic line & column tracking
: - Standard library of terminals (strings, numbers, names, etc.)
: - Import grammars from Nearley.js
: - Extensive test suite
: - And much more! Since version 1.0, only Python versions 3.6 and up
: are supported.