我如何“降级”?到python2.7
我相当漫不经心地选择了最新版本的Python(3.2.2) 不幸的是它缺少我迫切需要的 matplotlib。 我已经下载了python 2.7。 我的简单问题是我是否必须卸载 python3.2 或者我可以将其保留在 Windows 64 系统上吗?
Being quite cavalier I went for the latest version of Python (3.2.2)
Unfortunately it lacks the matplotlib that I desperately need.
I have downloaded python 2.7.
My simple question is weather I have to uninstall python3.2 or can I leave it on my windows 64 system?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以保留 python 3.2 安装,但必须小心启动哪个版本(通过明确调用)。您始终可以通过执行以下操作来检查脚本中的 python 版本:
如果您没有特别使用 python 3.2,我建议卸载它。
you can keep the python 3.2 installation, but you will have to be carefull about which version you launch (by making the call explicit). you can always check the python version in a script by doing:
If you have no particular use of python 3.2, I recommend uninstalling it.
我不确定 Windows 中的 python 是否有区别,但在 mac 和 linux 上我只是使用旧版本来调用
它似乎保留了我以前拥有的所有版本。也许尝试运行上面的命令,看看它是否在 Windows 上工作,以及是否只是更改了“python”指向的符号链接。
I'm not sure if there's a difference on python in windows but on mac and linux I simply call older versions using
It seems to keep all the versions I previously had before. Maybe try running the above command and seeing if it works on windows and if it does just change the symbolic link 'python' is pointing to.