6

I have Python 2.7.3 and considering to install new 2.7.5 version, but I can't find information if it's possible to upgrade current (and keep my modules intact) or is it advised to install as separate and reinstall all my modules one by one (which I don't want to do)?

4

1 回答 1

4

只需在 2.7.3 上安装 Python2.7.5,一切都很好。(我这样做)

安装库的文件夹site-packages将保持不变。

Python2.7.3 也具有与 Python2.7.5 相同的 c 接口,因此您也可以使用已编译的模块。

我记得卸载了 Python,它只删除了它带到我电脑上的文件。我所有的编程工作都没有受到影响。

如果你真的遇到我不知道的问题,你可以简单地重新安装旧版本。

这样做的好处是,如果您选择高级选项来编译文件,它甚至会检查您安装的模块并编译它们。

于 2013-05-25T18:07:06.273 回答