我如何“降级”?到python2.7

发布于 2024-12-10 23:16:20 字数 136 浏览 1 评论 0原文

我相当漫不经心地选择了最新版本的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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

内心荒芜 2024-12-17 23:16:20

您可以保留 python 3.2 安装,但必须小心启动哪个版本(通过明确调用)。您始终可以通过执行以下操作来检查脚本中的 python 版本:

import sys
print sys.version

如果您没有特别使用 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:

import sys
print sys.version

If you have no particular use of python 3.2, I recommend uninstalling it.

乜一 2024-12-17 23:16:20

我不确定 Windows 中的 python 是否有区别,但在 mac 和 linux 上我只是使用旧版本来调用

python2.6 or python2.7 

它似乎保留了我以前拥有的所有版本。也许尝试运行上面的命令,看看它是否在 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

python2.6 or python2.7 

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文