如何安装旧版本的python
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/36809967/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
How to install an older version of python
提问by user225725
How can I install python 3.4 (Windows version) when a newer version (3.5.1) is now available. My app specifically is looking for 3.4. I can't seem to find a download for any of the older versions.
当新版本 (3.5.1) 现在可用时,如何安装 python 3.4(Windows 版本)。我的应用程序专门寻找 3.4。我似乎找不到任何旧版本的下载。
回答by Thomas Junk
The simplest platform independend solution to that is:
最简单的平台独立解决方案是:
A) The oldschool way
A)老派方式
1) Go to the Python siteand grab the Files you need
1) 转到 Python站点并获取您需要的文件
2) Unpack and make sure the execution path from your environment points for Python to the destination directory.
2) 解压并确保您的环境中的执行路径指向 Python 的目标目录。
B)Or use: https://github.com/yyuu/pyenv
B)或者使用:https: //github.com/yyuu/pyenv
C)http://conda.pydata.org/docs/py2or3.htmlseems to do a similar job.
C) http://conda.pydata.org/docs/py2or3.html似乎做了类似的工作。