How to Install and Uninstall python3-zodbpickle.x86_64 Package on Fedora 35

Last updated: May 19,2024

1. Install "python3-zodbpickle.x86_64" package

Please follow the steps below to install python3-zodbpickle.x86_64 on Fedora 35

$ sudo dnf update $ sudo dnf install python3-zodbpickle.x86_64

2. Uninstall "python3-zodbpickle.x86_64" package

This is a short guide on how to uninstall python3-zodbpickle.x86_64 on Fedora 35:

$ sudo dnf remove python3-zodbpickle.x86_64 $ sudo dnf autoremove

3. Information about the python3-zodbpickle.x86_64 package on Fedora 35

Last metadata expiration check: 0:53:48 ago on Wed Sep 7 02:25:42 2022.
Available Packages
Name : python3-zodbpickle
Version : 2.2.0
Release : 1.fc35
Architecture : x86_64
Size : 144 k
Source : python-zodbpickle-2.2.0-1.fc35.src.rpm
Repository : updates
Summary : Fork of Python 3 pickle module for ZODB
URL : https://pypi.python.org/pypi/zodbpickle
License : Python and ZPLv2.1
Description : This package presents a uniform pickling interface for ZODB:
: - Under Python2, this package forks both Python 2.7's pickle and cPickle
: modules, adding support for the protocol 3 opcodes. It also provides
: a new subclass of bytes, zodbpickle.binary, which Python2 applications
: can use to pickle binary values such that they will be unpickled as
: bytes under Py3k.
: - Under Py3k, this package forks the pickle module (and the supporting C
: extension) from Python 3.5 through 3.10. The fork adds support for
: the noload operations used by ZODB.