Error in installing Pytorch version 1.4.0 in Google Colab

I need to downgrade the Pytorch, when I use these two commands in Google colab, I face the following error.
!pip install torchvision==0.5.0
!pip install torch==1.4.0

Looking in indexes: Simple index, https://us-python.pkg.dev/colab-wheels/public/simple/
ERROR: Could not find a version that satisfies the requirement torchvision==0.5.0 (from versions: 0.1.6, 0.1.7, 0.1.8, 0.1.9, 0.2.0, 0.2.1, 0.2.2, 0.2.2.post2, 0.2.2.post3, 0.8.2, 0.9.0, 0.9.1, 0.10.0, 0.10.1, 0.11.0, 0.11.1, 0.11.2, 0.11.3, 0.12.0, 0.13.0, 0.13.1, 0.14.0, 0.14.1)
ERROR: No matching distribution found for torchvision==0.5.0
ERROR: Could not find a version that satisfies the requirement torch==1.4.0 (from versions: 1.7.1, 1.8.0, 1.8.1, 1.9.0, 1.9.1, 1.10.0, 1.10.1, 1.10.2, 1.11.0, 1.12.0, 1.12.1, 1.13.0, 1.13.1)
ERROR: No matching distribution found for torch==1.4.0

Based on sys.version Colab is using Python==3.9.16, which wasn’t supported when PyTorch 1.4.0 was released.
The supported Python versions are 2.7, 3.5, 3.6, 3.7, and 3.8 as seen here.
What’s the reason you want to download such as old PyTorch release?