如果使用Python,不同的阶段应该有多种选项,反而容易让人困惑

2024-02-04 01:48

本文主要是介绍如果使用Python,不同的阶段应该有多种选项,反而容易让人困惑,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!


工欲善其事必先利其器; 


一个语言的好坏对初学者来说,主要是它呈现的用户界面,语法以及编译优化等底层的实现反而不是那么重要. 

而这些界面有关的东西通过不同的工具有不同实现方式. 所以,找到和选择合适的工具对学习使用任何语言都是极其重要的.


从所用语言的版本Python有2.7+ 和3.3+两条路线, 两者语法上有很多不同, 前者应该最适合初学,后者更适合应用;


从所用的编辑器或IDE,比较受推崇的是pycharm, 有professional收费和community免费版本


从所需要的各种package来看, 如果全部一个个安装不是不可行,太麻烦了. 

逐个安装的话,到这里:http://www.lfd.uci.edu/~gohlke/pythonlibs/


Alternative Implementations

This site hosts the "traditional" implementation of Python (nicknamed CPython). A number of alternative implementations are available as well, namely

  • IronPython (Python running on .NET)
  • Jython (Python running on the Java Virtual Machine)
  • PyPy (A fast python implementation with a JIT compiler)
  • Stackless Python (Branch of CPython supporting microthreads)

Other parties have re-packaged CPython. These re-packagings often include more libraries or are specialized for a particular application:

  • ActiveState ActivePython (commercial and community versions, including scientific computing modules)
  • pythonxy (Scientific-oriented Python Distribution based on Qt and Spyder)
  • winpython (WinPython is a portable scientific Python distribution for Windows)
  • Conceptive Python SDK (targets business, desktop and database applications)
  • Enthought Canopy (a commercial distribution for scientific computing)
  • Portable Python (Python and add-on packages configured to run off a portable device)
  • PyIMSL Studio (a commercial distribution for numerical analysis – free for non-commercial use)
  • Anaconda Python (a full Python distribution for data management, analysis and visualization of large data sets)
  • eGenix PyRun (a portable Python runtime, complete with stdlib, frozen into a single executable file)

打包的方式, python(x y)是个很好的选项: 

http://code.google.com/p/pythonxy/wiki/Downloads

Downloads  
Download page with changelog. 
Featured 
en,  fr
Updated  Feb 17 (5 days ago) by  grizzly.nyo

Current release

Python(x,y) current version is 2.7.6.0 (License):

Link(s)Location
Python(x,y)-2.7.6.0.exeMirror - provided by NTUA
Python(x,y)-2.7.6.0.exeMirror - provided by ConnectMV
Python(x,y)-2.7.6.0.exeMirror - provided by University of Kent

Installation notes

  • It is recommended to uninstall any other Python distribution before installing Python(x,y)
  • You may update your Python(x,y) installation via individual package installers which are updated more frequently -- see the plugins page
  • Please use the Issues page to request new features or report unknown bugs
  • Python(x,y) can be easily extended with other Python libraries because Python(x,y) is compatible with all Python modules installers: distutils installers (.exe), Python eggs (.egg), and all other NSIS (.exe) or MSI (.msi) setups which were built for Python 2.7 official distribution - see the plugins page for customizing options
  • Another Python(x,y) exclusive feature: all packages are optional (i.e. install only what you need)
  • Basemap users (data plotting on map projections): please see the AdditionalPlugins

Updates

The following installers will help you keep your Python(x,y) installation up-to-date: only installed plugin will be updated according to the change log.

InstallerSizeRequired version
Py(x,y)-2.7.3.1.exe117 MB2.7.3.0
Py(x,y)-2.7.2.3.exe130 MB2.7.2.2
Py(x,y)-2.7.2.1.exe75 MB2.7.2.0
Py(x,y)-2.6.5.6.exe6 MB2.6.5.5
Py(x,y)-2.6.5.5.exe58 MB2.6.5.4
Py(x,y)-2.6.5.4.exe67 MB2.6.5.3
Py(x,y)-2.6.5.3.exe61 MB2.6.5.2
Py(x,y)-2.6.5.2.exe64 MB2.6.5.1
Py(x,y)-2.6.5.1.exe20 MB2.6.5.0
Py(x,y)-2.6.5.0.exe79 MB2.6.2.0
Py(x,y)-2.1.17b.exe8 MB2.1.16
Py(x,y)-2.1.17a.exe8 MB2.1.15
Py(x,y)-2.1.15.exe60 MB2.1.14
Py(x,y)-2.1.14.exe26 MB2.1.13
Py(x,y)-2.1.13.exe95 MB2.1.12
Py(x,y)-2.1.12.exe41 MB2.1.11
Py(x,y)-2.1.11.exe73 MB2.1.10

Unstable release

Python(x,y) latest unstable release is None

Plugin updates

The following plugins will certainly be included in Python(x,y) next release: (maybe they are already included in current release and this page hasn't been refreshed yet, please check on standard plugins page)

Changes history

Version 2.7.6.0 (02/15/2014)


这篇关于如果使用Python,不同的阶段应该有多种选项,反而容易让人困惑的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/676054

相关文章

使用Python创建一个功能完整的Windows风格计算器程序

《使用Python创建一个功能完整的Windows风格计算器程序》:本文主要介绍如何使用Python和Tkinter创建一个功能完整的Windows风格计算器程序,包括基本运算、高级科学计算(如三... 目录python实现Windows系统计算器程序(含高级功能)1. 使用Tkinter实现基础计算器2.

在.NET平台使用C#为PDF添加各种类型的表单域的方法

《在.NET平台使用C#为PDF添加各种类型的表单域的方法》在日常办公系统开发中,涉及PDF处理相关的开发时,生成可填写的PDF表单是一种常见需求,与静态PDF不同,带有**表单域的文档支持用户直接在... 目录引言使用 PdfTextBoxField 添加文本输入域使用 PdfComboBoxField

Git可视化管理工具(SourceTree)使用操作大全经典

《Git可视化管理工具(SourceTree)使用操作大全经典》本文详细介绍了SourceTree作为Git可视化管理工具的常用操作,包括连接远程仓库、添加SSH密钥、克隆仓库、设置默认项目目录、代码... 目录前言:连接Gitee or github,获取代码:在SourceTree中添加SSH密钥:Cl

Python开发文字版随机事件游戏的项目实例

《Python开发文字版随机事件游戏的项目实例》随机事件游戏是一种通过生成不可预测的事件来增强游戏体验的类型,在这篇博文中,我们将使用Python开发一款文字版随机事件游戏,通过这个项目,读者不仅能够... 目录项目概述2.1 游戏概念2.2 游戏特色2.3 目标玩家群体技术选择与环境准备3.1 开发环境3

Python中模块graphviz使用入门

《Python中模块graphviz使用入门》graphviz是一个用于创建和操作图形的Python库,本文主要介绍了Python中模块graphviz使用入门,具有一定的参考价值,感兴趣的可以了解一... 目录1.安装2. 基本用法2.1 输出图像格式2.2 图像style设置2.3 属性2.4 子图和聚

windows和Linux使用命令行计算文件的MD5值

《windows和Linux使用命令行计算文件的MD5值》在Windows和Linux系统中,您可以使用命令行(终端或命令提示符)来计算文件的MD5值,文章介绍了在Windows和Linux/macO... 目录在Windows上:在linux或MACOS上:总结在Windows上:可以使用certuti

CentOS和Ubuntu系统使用shell脚本创建用户和设置密码

《CentOS和Ubuntu系统使用shell脚本创建用户和设置密码》在Linux系统中,你可以使用useradd命令来创建新用户,使用echo和chpasswd命令来设置密码,本文写了一个shell... 在linux系统中,你可以使用useradd命令来创建新用户,使用echo和chpasswd命令来设

Python使用Matplotlib绘制3D曲面图详解

《Python使用Matplotlib绘制3D曲面图详解》:本文主要介绍Python使用Matplotlib绘制3D曲面图,在Python中,使用Matplotlib库绘制3D曲面图可以通过mpl... 目录准备工作绘制简单的 3D 曲面图绘制 3D 曲面图添加线框和透明度控制图形视角Matplotlib

Pandas中统计汇总可视化函数plot()的使用

《Pandas中统计汇总可视化函数plot()的使用》Pandas提供了许多强大的数据处理和分析功能,其中plot()函数就是其可视化功能的一个重要组成部分,本文主要介绍了Pandas中统计汇总可视化... 目录一、plot()函数简介二、plot()函数的基本用法三、plot()函数的参数详解四、使用pl

一文教你Python如何快速精准抓取网页数据

《一文教你Python如何快速精准抓取网页数据》这篇文章主要为大家详细介绍了如何利用Python实现快速精准抓取网页数据,文中的示例代码简洁易懂,具有一定的借鉴价值,有需要的小伙伴可以了解下... 目录1. 准备工作2. 基础爬虫实现3. 高级功能扩展3.1 抓取文章详情3.2 保存数据到文件4. 完整示例