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 justpandas
- The import syntax could then be
import pandas_1_1_3 as pandas
Might this approach be a good idea?
pip install pandas==1.1.3 --as=pandas_1_1_3
pandas_1_1_3
in PATH, rather than just pandas
import pandas_1_1_3 as pandas