How to Install and Uninstall python3-autograd.noarch Package on Fedora 35

Last updated: January 10,2025

1. Install "python3-autograd.noarch" package

This is a short guide on how to install python3-autograd.noarch on Fedora 35

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

2. Uninstall "python3-autograd.noarch" package

In this section, we are going to explain the necessary steps to uninstall python3-autograd.noarch on Fedora 35:

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

3. Information about the python3-autograd.noarch package on Fedora 35

Last metadata expiration check: 0:09:44 ago on Wed Sep 7 08:25:01 2022.
Available Packages
Name : python3-autograd
Version : 1.3
Release : 13.fc35
Architecture : noarch
Size : 117 k
Source : python-autograd-1.3-13.fc35.src.rpm
Repository : updates
Summary : Efficiently computes derivatives of numpy code
URL : https://github.com/HIPS/autograd
License : MIT
Description : Autograd can automatically differentiate native Python and Numpy code. It can
: handle a large subset of Python's features, including loops, ifs, recursion and
: closures, and it can even take derivatives of derivatives of derivatives. It
: supports reverse-mode differentiation (a.k.a. backpropagation), which means it
: can efficiently take gradients of scalar-valued functions with respect to
: array-valued arguments, as well as forward-mode differentiation, and the two
: can be composed arbitrarily. The main intended application of Autograd is
: gradient-based optimization.