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

Last updated: October 10,2024

1. Install "python3-zodbpickle.x86_64" package

Please follow the instructions below to install python3-zodbpickle.x86_64 on Fedora 38

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

2. Uninstall "python3-zodbpickle.x86_64" package

In this section, we are going to explain the necessary steps to uninstall python3-zodbpickle.x86_64 on Fedora 38:

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

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

Last metadata expiration check: 5:50:17 ago on Sat Mar 16 22:59:57 2024.
Available Packages
Name : python3-zodbpickle
Version : 3.0.1
Release : 1.fc38
Architecture : x86_64
Size : 177 k
Source : python-zodbpickle-3.0.1-1.fc38.src.rpm
Repository : updates
Summary : Fork of Python 3 pickle module for ZODB
URL : https://pypi.python.org/pypi/zodbpickle
License : PSF-2.0 and ZPL-2.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.7 through 3.12. The fork adds support for
: the noload operations used by ZODB.