PyCharm: 您需要配置好的 Python 2 SDK 来渲染 Epydoc docstring

感谢 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
...

完成。

你可能感兴趣的:(pycharmpython)