How to Install and Uninstall python3-astroid Package on openSUSE Leap

Last updated: May 18,2024

1. Install "python3-astroid" package

Please follow the step by step instructions below to install python3-astroid on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install python3-astroid

2. Uninstall "python3-astroid" package

This guide covers the steps necessary to uninstall python3-astroid on openSUSE Leap:

$ sudo zypper remove python3-astroid

3. Information about the python3-astroid package on openSUSE Leap

Information for package python3-astroid:
----------------------------------------
Repository : Main Repository
Name : python3-astroid
Version : 1.6.1-1.26
Arch : noarch
Vendor : SUSE LLC
Installed Size : 1.6 MiB
Installed : No
Status : not installed
Source package : python-astroid-1.6.1-1.26.src
Upstream URL : https://github.com/pycqa/astroid
Summary : Rebuild a new abstract syntax tree from Python's ast
Description :
The aim of this module is to provide a common base representation of
python source code for projects such as pychecker, pyreverse,
pylint... Well, actually the development of this library is
essentially governed by pylint's needs. It used to be called
logilab-astng.
It provides a compatible representation which comes from the _ast
module. It rebuilds the tree generated by the builtin _ast module by
recursively walking down the AST and building an extended ast. The new
node classes have additional methods and attributes for different
usages. They include some support for static inference and local name
scopes. Furthermore, astroid builds partial trees by inspecting living
objects.