How to Install and Uninstall python3-libcst.noarch Package on Fedora 34

Last updated: October 05,2024

1. Install "python3-libcst.noarch" package

Learn how to install python3-libcst.noarch on Fedora 34

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

2. Uninstall "python3-libcst.noarch" package

Please follow the guidelines below to uninstall python3-libcst.noarch on Fedora 34:

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

3. Information about the python3-libcst.noarch package on Fedora 34

Last metadata expiration check: 4:24:58 ago on Tue Sep 6 08:10:37 2022.
Available Packages
Name : python3-libcst
Version : 0.3.21
Release : 1.fc34
Architecture : noarch
Size : 767 k
Source : python-libcst-0.3.21-1.fc34.src.rpm
Repository : updates
Summary : A concrete syntax tree with AST-like properties for Python 3
URL : https://github.com/Instagram/LibCST
License : MIT and (MIT and Python) and ASL 2.0
Description :
: LibCST parses Python source code as a CST tree that keeps all formatting
: details (comments, whitespaces, parentheses, etc). It's useful for building
: automated refactoring (codemod) applications and linters.
:
: LibCST creates a compromise between an Abstract Syntax Tree (AST) and a
: traditional Concrete Syntax Tree (CST). By carefully reorganizing and naming
: node types and fields, it creates a lossless CST that looks and feels like an
: AST.