How to Install and Uninstall python-lockfile.noarch Package on Amazon Linux 2

Last updated: May 19,2024

1. Install "python-lockfile.noarch" package

Here is a brief guide to show you how to install python-lockfile.noarch on Amazon Linux 2

$ sudo yum makecache $ sudo yum install python-lockfile.noarch

2. Uninstall "python-lockfile.noarch" package

Please follow the step by step instructions below to uninstall python-lockfile.noarch on Amazon Linux 2:

$ sudo yum remove python-lockfile.noarch $ sudo yum autoremove

3. Information about the python-lockfile.noarch package on Amazon Linux 2

Loaded plugins: ovl, priorities
Available Packages
Name : python-lockfile
Arch : noarch
Epoch : 1
Version : 0.9.1
Release : 4.amzn2
Size : 28 k
Repo : amzn2-core/2/x86_64
Summary : A platform-independent file locking module
URL : http://code.google.com/p/pylockfile
License : MIT
Description : The lockfile module exports a FileLock class which provides a
: simple API for locking files. Unlike the Windows msvcrt.locking
: function, the Unix fcntl.flock, fcntl.lockf and the deprecated
: posixfile module, the API is identical across both Unix (including
: Linux and Mac) and Windows platforms. The lock mechanism relies on
: the atomic nature of the link (on Unix) and mkdir (on Windows)
: system calls.