Python packages with conflicting dependencies

前端 未结 2 706
无人及你
无人及你 2021-01-20 03:32

we are trying to install several own written python3 applications sharing some libraries with conflicting versions.

We are currently discussing employing the order o

2条回答
  •  渐次进展
    2021-01-20 03:54

    For dependency isolation and management I always have one virtualenv per application. This prevents issues with inter-application dependency conflicts and if there are dependency conflicts within an application's dependency any hackery to workaround them is limited to the affected environment.

    Also, dependency upgrades can be performed independently per application.

提交回复
热议问题