How to Install and Uninstall python3-pickleshare.noarch Package on CentOS Stream 9

Last updated: October 13,2024

1. Install "python3-pickleshare.noarch" package

This guide covers the steps necessary to install python3-pickleshare.noarch on CentOS Stream 9

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

2. Uninstall "python3-pickleshare.noarch" package

This guide covers the steps necessary to uninstall python3-pickleshare.noarch on CentOS Stream 9:

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

3. Information about the python3-pickleshare.noarch package on CentOS Stream 9

Last metadata expiration check: 1:01:52 ago on Sat Mar 16 16:03:45 2024.
Available Packages
Name : python3-pickleshare
Version : 0.7.5
Release : 3.el9
Architecture : noarch
Size : 18 k
Source : python-pickleshare-0.7.5-3.el9.src.rpm
Repository : epel
Summary : Tiny 'shelve'-like database with concurrency support
URL : https://github.com/pickleshare/pickleshare
License : MIT
Description :
: PickleShare - a small ‘shelve’ like data store with concurrency support.
:
: Like shelve, a PickleShareDB object acts like a normal dictionary.
: Unlike shelve, many processes can access the database simultaneously.
: Changing a value in database is immediately visible to other processes
: accessing the same database.
:
: Concurrency is possible because the values are stored in separate files.
: Hence the “database” is a directory where all files are governed
: by PickleShare.