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

Last updated: October 13,2024

1. Install "python3-zodbpickle.x86_64" package

Learn how to install python3-zodbpickle.x86_64 on Fedora 36

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

2. Uninstall "python3-zodbpickle.x86_64" package

This guide let you learn how to uninstall python3-zodbpickle.x86_64 on Fedora 36:

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

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

Last metadata expiration check: 1:16:04 ago on Thu Sep 8 02:05:26 2022.
Available Packages
Name : python3-zodbpickle
Version : 2.2.0
Release : 2.fc36
Architecture : x86_64
Size : 144 k
Source : python-zodbpickle-2.2.0-2.fc36.src.rpm
Repository : fedora
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.