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

Last updated: November 27,2024

1. Install "python3-libcst.noarch" package

Please follow the guidance below to install python3-libcst.noarch on Fedora 38

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

2. Uninstall "python3-libcst.noarch" package

This guide covers the steps necessary to uninstall python3-libcst.noarch on Fedora 38:

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

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

Last metadata expiration check: 5:35:59 ago on Sat Mar 16 22:59:57 2024.
Available Packages
Name : python3-libcst
Version : 0.4.10
Release : 1.fc38
Architecture : noarch
Size : 1.2 M
Source : python-libcst-0.4.10-1.fc38.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 OR PSF-2.0) AND Apache-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.