Installing multiple versions of a package

Might this approach be a good idea?

pip install pandas==1.1.3 --as=pandas_1_1_3

  • Which would create a folder with the name pandas_1_1_3 in PATH, rather than just pandas
  • The import syntax could then be import pandas_1_1_3 as pandas