How To Install subprocess on Fedora 36

In this tutorial we learn how to install subprocess in Fedora 36. subprocess is Execution of and interaction with external processes and pipelines

Introduction

In this tutorial we learn how to install subprocess on Fedora 36.

What is subprocess

Execution of child processes and pipelines, inspired by Python’s subprocess module, with Rust-specific extensions.

We can use yum or dnf to install subprocess on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install subprocess.

Install subprocess on Fedora 36 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

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

sudo dnf -y install subprocess

Install subprocess on Fedora 36 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install subprocess using yum by running the following command:

sudo yum -y install subprocess

How To Uninstall subprocess on Fedora 36

To uninstall only the subprocess package we can use the following command:

sudo dnf remove subprocess

subprocess Package Contents on Fedora 36

/usr/bin/just-echo
/usr/lib/.build-id
/usr/lib/.build-id/d6
/usr/lib/.build-id/d6/c90f7c119cf37a377a4a0f8c01676f40d4f1cd
/usr/share/doc/subprocess
/usr/share/doc/subprocess/README.md
/usr/share/doc/subprocess/examples
/usr/share/doc/subprocess/examples/sample.rs
/usr/share/licenses/subprocess
/usr/share/licenses/subprocess/LICENSE-APACHE
/usr/share/licenses/subprocess/LICENSE-MIT

References

Summary

In this tutorial we learn how to install subprocess on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).