发布网友 发布时间:2022-04-21 22:36
共4个回答
热心网友 时间:2022-04-06 15:32
系统区别:
1、Download Windows X86 可供电脑系统32位使用。
2、Download Windows X86-64 可供电脑系统64位使用。
版本区别:
1、Download Windows X86 web-based installer 是通过需要联网完成安装的文件。
2、Download Windows X86 executable installer 是可执行的安装文件,下载后,双击安装即可。
3、Download Windows X86 embeddable zip file 是可嵌入式的压缩包文件,可以集成到其他应用中。
扩展资料:
Python2与Python3的选择:
因为早期的 Python版本在基础方面设计存在着一些不足之处。2008 年的时候 Guido van Rossum 又重新开发 Python 3.0(被称为Python 3000,或简称Py3k),Python3在设计的时候很好地解决了这些遗留问题, 并且在性能上也有了一定的提升,。
然而 Python3 带来的最大的问题就是不完全向后兼容,当时向后兼容的版本是Python2.6。Python开发团队无法一下子就让所有项目和类库都转到 Python3.0 上面。
所以,两个版本就进入了长期并行开发和维护的状态。但是就更新速度来说 ,Python3更新速度远快于Python2的速度,因为Python2目前主要以维护为主。Python3是未来的趋势。
热心网友 时间:2022-04-06 16:50
上面的都是windows系统平台的安装包。
x86适合32位操作系统;x86-64适合64位操作系统。
下面是官网的解释:
https://www.python.org/downloads/release/python-350/
The binaries for AMD64 will also work on processors that implement
the Intel 64 architecture. (Also known as the "x64" architecture, and
formerly known as both "EM64T" and "x86-64".) They will not work on
Intel Itanium Processors (formerly "IA-64").
Windows users: If installing Python 3.5 as a non-privileged user,
you may need to escalate to administrator privileges to install an
update to your C runtime libraries.
Windows users: There are now "web-based" installers for Windows
platforms; the installer will download the needed software components at
installation time.
Windows Users: There are redistributable zip files containing the
Windows builds, making it easy to redistribute Python as part of another
software package. Please see the documentation regarding Embedded Distribution for more information.It is intended for acting as part of another application, rather than being directly accessed by end-users.
可以通过下面3种途径获取python:
web-based installer 是需要通过联网完成安装的
executable installer 是可执行文件(*.exe)方式安装
embeddable zip file 嵌入式版本,可以集成到其它应用中。https://docs.python.org/3.5/using/windows.html#embedded-distribution
上面3种途径,如果有网络,选择web-based;
热心网友 时间:2022-04-06 18:25
web-based 就是在线安装版。热心网友 时间:2022-04-06 20:16
Python3和Python2区别还是挺大的。