感激 https://blog.csdn.net/qq_4281…,
解决了这个困扰我好几年的问题。
咱们只须要用 conda 配置一个 python2 环境即可。
我应用 mamba 代替 conda 命令,因为 mamba 计算包依赖的速度快得多。
能够应用 conda 装置 mamba。
mamba create -n py2
...
mamba search python # 找到适合的 python2 版本,我是用 2.7.18
...
mamba install python=2.7.18
...
实现。