How to Install and Uninstall pypy-pyparsing Package on Ubuntu 21.10 (Impish Indri)

Last updated: May 18,2024

1. Install "pypy-pyparsing" package

This guide let you learn how to install pypy-pyparsing on Ubuntu 21.10 (Impish Indri)

$ sudo apt update $ sudo apt install pypy-pyparsing

2. Uninstall "pypy-pyparsing" package

Please follow the guidelines below to uninstall pypy-pyparsing on Ubuntu 21.10 (Impish Indri):

$ sudo apt remove pypy-pyparsing $ sudo apt autoclean && sudo apt autoremove

3. Information about the pypy-pyparsing package on Ubuntu 21.10 (Impish Indri)

Package: pypy-pyparsing
Architecture: all
Version: 2.4.7-1
Priority: optional
Section: universe/python
Source: pyparsing
Origin: Ubuntu
Maintainer: Ubuntu Developers
Original-Maintainer: Debian Python Modules Team
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Installed-Size: 298
Depends: pypy
Suggests: python-pyparsing-doc
Filename: pool/universe/p/pyparsing/pypy-pyparsing_2.4.7-1_all.deb
Size: 61424
MD5sum: d111df027b1635a4c6840f7c7c7820b9
SHA1: f4799614e089d1c4bf9ee517a587d9b3f7700077
SHA256: 784248891cdb03c5687b95748585e36100ac04d55403b76f2625770432f96b1b
SHA512: f09b5f064e3d9144134a676fbafb57c93ce18fec0321fde8b00bd81c6e374e0542c13dc1a0ef5fb269438b7b7c410c17f29c114b35962db2d0b269dcd04911ce
Homepage: https://github.com/pyparsing/pyparsing/
Description-en: alternative to creating and executing simple grammars - pypy
The parsing module is an alternative approach to creating and
executing simple grammars, vs. the traditional lex/yacc approach, or
the use of regular expressions. The parsing module provides a
library of classes that client code uses to construct the grammar
directly in Python code.
.
Here's an example:
.
from pyparsing import Word, alphas
greet = Word(alphas) + "," + Word(alphas) + "!"
hello = "Hello, World!"
print hello, "->", greet.parseString(hello)
.
This package contains the PyPy version of python-pyparsing.
Description-md5: 2f0edf9fd397708d90080983a706453c