How can I install transformers v2.11.0?

Hello. I want to use GitHub - xashru/punctuation-restoration: Punctuation Restoration using Transformer Models for High-and Low-Resource Languages

It requires specific version of transformers v2.11.0?

First of all which specific version of Python is best for this version of transformers?

Secondly I have installed Python 3.5.4 and testing like this but it fails to install

So how can I install it?

Python 3.5.4 (v3.5.4:3f56838, Aug 8 2017, 02:17:05) [MSC v.1900 64 bit (AMD64)] on win32

C:\python355\Scripts>pip.exe install transformers==v2.11.0
DEPRECATION: Python 3.5 reached the end of its life on September 13th, 2020. Please upgrade your Python as Python 3.5 is no longer maintained. pip 21.0 will drop support for Python 3.5 in January 2021. pip 21.0 will remove support for this functionality.
ERROR: Could not find a version that satisfies the requirement transformers==v2.11.0
ERROR: No matching distribution found for transformers==v2.11.0

C:\python355\Scripts>

The v should not be present, pip install transformers==2.11.0 is probably going to work better.

You might also need a pip install --upgrade pip if that still doesn’t work.