2

How is it possible to downgrade a package version using Pacman in Arch distributions? for example, python-flask is version 2. But I need to downgrade it to 1.1.2-4.

How Can I do it?

General Grievance
  • 4,555
  • 31
  • 31
  • 45
The Mir
  • 400
  • 1
  • 8
  • 17

1 Answers1

5

Arch mirrors do not usually maintain older versions of packages, so you cannot directly find older versions in a mirror.

You can look in the Archlinux Archive here for the package: https://archive.archlinux.org/packages/p/python/

Download the package and install it with pacman -U

For more information: https://wiki.archlinux.org/title/Arch_Linux_Archive

Colum
  • 66
  • 2