如果使用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

相关文章

SpringBoot中使用Flux实现流式返回的方法小结

《SpringBoot中使用Flux实现流式返回的方法小结》文章介绍流式返回(StreamingResponse)在SpringBoot中通过Flux实现,优势包括提升用户体验、降低内存消耗、支持长连... 目录背景流式返回的核心概念与优势1. 提升用户体验2. 降低内存消耗3. 支持长连接与实时通信在Sp

基于Python开发Windows屏幕控制工具

《基于Python开发Windows屏幕控制工具》在数字化办公时代,屏幕管理已成为提升工作效率和保护眼睛健康的重要环节,本文将分享一个基于Python和PySide6开发的Windows屏幕控制工具,... 目录概述功能亮点界面展示实现步骤详解1. 环境准备2. 亮度控制模块3. 息屏功能实现4. 息屏时间

Python如何去除图片干扰代码示例

《Python如何去除图片干扰代码示例》图片降噪是一个广泛应用于图像处理的技术,可以提高图像质量和相关应用的效果,:本文主要介绍Python如何去除图片干扰的相关资料,文中通过代码介绍的非常详细,... 目录一、噪声去除1. 高斯噪声(像素值正态分布扰动)2. 椒盐噪声(随机黑白像素点)3. 复杂噪声(如伪

Python中图片与PDF识别文本(OCR)的全面指南

《Python中图片与PDF识别文本(OCR)的全面指南》在数据爆炸时代,80%的企业数据以非结构化形式存在,其中PDF和图像是最主要的载体,本文将深入探索Python中OCR技术如何将这些数字纸张转... 目录一、OCR技术核心原理二、python图像识别四大工具库1. Pytesseract - 经典O

基于Linux的ffmpeg python的关键帧抽取

《基于Linux的ffmpegpython的关键帧抽取》本文主要介绍了基于Linux的ffmpegpython的关键帧抽取,实现以按帧或时间间隔抽取关键帧,文中通过示例代码介绍的非常详细,对大家的学... 目录1.FFmpeg的环境配置1) 创建一个虚拟环境envjavascript2) ffmpeg-py

python使用库爬取m3u8文件的示例

《python使用库爬取m3u8文件的示例》本文主要介绍了python使用库爬取m3u8文件的示例,可以使用requests、m3u8、ffmpeg等库,实现获取、解析、下载视频片段并合并等步骤,具有... 目录一、准备工作二、获取m3u8文件内容三、解析m3u8文件四、下载视频片段五、合并视频片段六、错误

Python中提取文件名扩展名的多种方法实现

《Python中提取文件名扩展名的多种方法实现》在Python编程中,经常会遇到需要从文件名中提取扩展名的场景,Python提供了多种方法来实现这一功能,不同方法适用于不同的场景和需求,包括os.pa... 目录技术背景实现步骤方法一:使用os.path.splitext方法二:使用pathlib模块方法三

Python打印对象所有属性和值的方法小结

《Python打印对象所有属性和值的方法小结》在Python开发过程中,调试代码时经常需要查看对象的当前状态,也就是对象的所有属性和对应的值,然而,Python并没有像PHP的print_r那样直接提... 目录python中打印对象所有属性和值的方法实现步骤1. 使用vars()和pprint()2. 使

gitlab安装及邮箱配置和常用使用方式

《gitlab安装及邮箱配置和常用使用方式》:本文主要介绍gitlab安装及邮箱配置和常用使用方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录1.安装GitLab2.配置GitLab邮件服务3.GitLab的账号注册邮箱验证及其分组4.gitlab分支和标签的

SpringBoot3应用中集成和使用Spring Retry的实践记录

《SpringBoot3应用中集成和使用SpringRetry的实践记录》SpringRetry为SpringBoot3提供重试机制,支持注解和编程式两种方式,可配置重试策略与监听器,适用于临时性故... 目录1. 简介2. 环境准备3. 使用方式3.1 注解方式 基础使用自定义重试策略失败恢复机制注意事项