How To Install python36-random2 on CentOS 7

In this tutorial we learn how to install python36-random2 on CentOS 7. python36-random2 is Python 2 compatible random module for Python 3

Introduction

In this tutorial we learn how to install python36-random2 on CentOS 7.

What is python36-random2

This package provides a Python 3 ported version of Python 2.7’s random module. It has also been back-ported to work in Python 2.6. In Python 3, the implementation of randrange() was changed, so that even with the same seed you get different sequences in Python 2 and 3. Note that several high-level functions such as randint() and choice() use randrange(). In my testing code I heavily rely on stable random generator results and it makes porting code to Python 3 a lot harder, if all those tests have to be adjusted. This package fixes that.

We can use yum or dnf to install python36-random2 on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install python36-random2.

Install python36-random2 on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install python36-random2 using yum by running the following command:

sudo yum -y install python36-random2

Install python36-random2 on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install python36-random2 using dnf by running the following command:

sudo dnf -y install python36-random2

How To Uninstall python36-random2 on CentOS 7

To uninstall only the python36-random2 package we can use the following command:

sudo dnf remove python36-random2

References

Summary

In this tutorial we learn how to install python36-random2 on CentOS 7 using yum and dnf.