Installing and importing multiple versions of a Python package
问题 I am using Dataiku DSS v6.0 which uses pandas==0.23 and this cannot be manually upgraded. I am also trying to use modin==0.6 , which is only compatible with pandas==0.25 . I have tried using modin==0.3 which requires pandas==0.23 , but this older version is throwing exceptions with some of the pandas methods I am calling. Is there any workaround to this? Can I somehow force modin==0.6 to accept pandas==0.23 ? Otherwise is there a way in which I can install both pandas==0.23 and pandas==0.25