How to Install and Uninstall python3-unipath.noarch Package on Rocky Linux 8

Last updated: September 20,2024

1. Install "python3-unipath.noarch" package

Please follow the instructions below to install python3-unipath.noarch on Rocky Linux 8

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

2. Uninstall "python3-unipath.noarch" package

Please follow the step by step instructions below to uninstall python3-unipath.noarch on Rocky Linux 8:

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

3. Information about the python3-unipath.noarch package on Rocky Linux 8

Last metadata expiration check: 2:08:45 ago on Mon Sep 12 10:27:18 2022.
Available Packages
Name : python3-unipath
Version : 1.1
Release : 16.el8
Architecture : noarch
Size : 45 k
Source : python-unipath-1.1-16.el8.src.rpm
Repository : epel
Summary : Alternative to Python modules os, os.path and shutil
URL : https://pypi.python.org/pypi/Unipath/
License : MIT
Description : Unipath is a package for doing pathname calculations and filesystem
: access in an object-oriented manner, an alternative to functions in
: os.path, shutil and glob, and even some functions in os.* It's based
: on Jason Orendorffs path.py but does not adhere as strictly to the
: underlying functions' syntax, in order to provide more user
: convenience and higher-level functionality. For example:
:
: o p.mkdir() succeeds silently if the directory already exists, and
: o p.mkdir(True) creates intermediate directories a la os.makedirs.
: o p.rmtree(parents=True) combines shutil.rmtree, os.path.isdir,
: os.remove, and os.removedirs, to recursively remove whatever it is
: if it exists.
: o p.read_file("rb") returns the file's contents in binary mode.
: o p.needs_update([other_path1, ...]) returns True if p doesn't exist
: or has an older timestamp than any of the others.
: o extra convenience functions in the unipath.tools module. dict2dir
: creates a directory hierarchy described by a dict. dump_path displays
: an ASCII tree of a directory hierarchy.