In the huggingface github it is written:
You should install Transformers in a virtual environment. If you're unfamiliar with Python virtual environments, check out the user guide.
Create a virtual environment with the version of Python you're going to use and activate it.
Now, if you want to use Transformers, you can install it with pip. If you'd like to play with the examples, you must install it from source.
Why should it be installed in a virtual python environment? What are the advantages of doing that rather than installing it on python as is?