【Python】Python模块常用的几种安装方式
<h2 style="line-height:28px;color:rgb(56,56,56);font-family:'Hiragino Sans GB W3','Hiragino Sans GB',Arial,Helvetica,simsun,u5b8bu4f53;font-size:16px;"><span style="font-size:12px;line-height:22.75px;"><span style="line-height:22.75px;background-color:rgb(255,255,255);">Python模块安装方法<p style="line-height:28px;color:rgb(56,u5b8bu4f53;font-size:16px;"><span style="font-size:12px;line-height:22.75px;background-color:rgb(255,255);"><span style="line-height:22.75px;">一、方法1: 单文件模块 <span style="color:#0000ff;line-height:22.75px;">python setup.py install<span style="font-size:12px;line-height:22.75px;color:rgb(56,u5b8bu4f53;background-color:rgb(255,255);"><p style="line-height:28px;color:rgb(56,255);">三、 方法3:easy_install 方式<p style="line-height:28px;color:rgb(56,u5b8bu4f53;font-size:16px;"><span style="background-color:rgb(255,255);"><span style="font-size:12px;line-height:22.75px;"><span style="line-height:22.75px;">?<span style="color:#0000ff;line-height:22.75px;">先下载ez_setup.py,运行python ez_setup 进行easy_install工具的安装,之后就可以使用easy_install进行安装package了。 ? easy_install? packageName <span style="font-size:12px;line-height:22.75px;"><span style="color:#0000ff;line-height:22.75px;">? easy_install? package.<span style="color:#ff0000;line-height:22.75px;">egg<p style="line-height:28px;color:rgb(56,255);"><span style="font-size:12px;line-height:22.75px;"><span style="line-height:22.75px;">四、 方法4:pip 方式? <p style="line-height:16.8833px;color:rgb(51,51,51);font-family:Verdana,sans-serif;font-size:13px;"><span style="background-color:rgb(255,255);"><span style="font-size:12px;line-height:22.75px;">先进行pip工具的安裝:easy_install pip(pip 可以通过easy_install 安裝,而且也会装到 Scripts 文件夹下。)<p style="line-height:28px;color:rgb(56,255);">安裝:pip install PackageName<blockquote style="line-height:16.8833px;font-size:13px;color:rgb(56,56);font-family:Verdana,sans-serif;"><span style="font-size:12px;line-height:22.75px;color:rgb(56,255);">更新:pip install -U PackageName<blockquote style="line-height:16.8833px;font-size:13px;color:rgb(56,255);">移除:pip uninstall PackageName<blockquote style="line-height:16.8833px;font-size:13px;color:rgb(56,255);">搜索:pip search PackageName<blockquote style="line-height:16.8833px;font-size:13px;color:rgb(56,255);">帮助:pip help<p style="line-height:28px;color:rgb(56,255);">--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- <blockquote style="line-height:16.8833px;font-size:13px;color:rgb(51,sans-serif;"><p style="line-height:28px;color:rgb(56,255);"><span style="font-size:12px;line-height:22.75px;">注:虽然Python的模块可以拷贝安装,但是一般情况下推荐制作一个安装包,即写一个setup.py文件来安装。 <span style="line-height:22.75px;">setup.py文件的使用如下: % python setup.py build???? #编译 % python setup.py install?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?#安装 % python setup.py sdist?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">? #制作分发包 % python setup.py bdist_wininst??? #制作windows下的分发包 % python setup.py bdist_rpm<p style="line-height:28px;color:rgb(56,255);"><span style="line-height:22.75px;">setup.py文件的编写 setup.py中主要执行一个 setup函数,该函数中大部分是描述性东西,最主要的是packages参数,列出所有的package,可以用自带的find_packages来动态获取package。所以setup.py文件的编写实际是很简单的。 <span style="line-height:22.75px;">简单的例子: setup.py文件:<p style="line-height:28px;color:rgb(56,255);"><span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">from setuptools import setup,find_packages <span style="font-size:12px;line-height:22.75px;">setup( <span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?name = " mytest ", <span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?version = " 0.10 ", <span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?description = " My test module ", <span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?author = " Robin Hood ", <span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?url = "?<a style="color:rgb(28,103,172);line-height:22.75px;">http://www.csdn.net?", <span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?license = " LGPL ", <span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?packages = find_packages(), <span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?scripts = [ " scripts/test.py " ], <span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?)<p style="line-height:28px;color:rgb(56,255);">mytest.py<p style="line-height:28px;color:rgb(56,255);"><span style="font-size:12px;line-height:22.75px;">import sys <span style="font-size:12px;line-height:22.75px;">def get(): <span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?<span style="font-size:12px;line-height:22.75px;">?return sys.path<p style="line-height:28px;color:rgb(56,255);">scripts/test.py<p style="line-height:28px;color:rgb(56,255);"><span style="font-size:12px;line-height:22.75px;">import os <span style="font-size:12px;line-height:22.75px;">print os.environ.keys()?<span style="font-size:12px;line-height:22.75px;color:rgb(56,255);">setup中的scripts表示将该文件放到 Python的Scripts目录下,可以直接用。OK,简单的安装成功,可以运行所列举的命令生成安装包,或者安装该python包。本机测试成功(win32-python25)!<p style="line-height:28px;color:rgb(56,255);"> <span style="font-size:14px;color:#0000ff;line-height:28px;"><span style="line-height:28px;">附注:setuptools工具安装方法<h3 style="line-height:32.76px;color:rgb(56,u5b8bu4f53;"><span style="background-color:rgb(255,255);"><span style="font-size:12px;line-height:22.75px;">(方法一). 使用ez_setup.py安装<span style="font-size:12px;line-height:22.75px;">setuptools<span style="background-color:rgb(255,255);"><span style="font-size:12px;line-height:22.75px;color:rgb(56,u5b8bu4f53;"> 进入https://pypi.python.org/pypi/setuptools下载<span style="font-size:12px;line-height:22.75px;color:rgb(56,u5b8bu4f53;"><span style="font-size:12px;line-height:22.75px;">ez_setup.py ?这是 setuptools 自豪的一种安装方式,只需要一个大约 8K 作为的脚本ez_setup.py,就能自动为用户安装包括 setuptools 自身在内的许多 Python 包。 使用这种方式,用户只需要下载 ez_setup。py 并运行,就可以自动下载和安装适合用户当前 Python 版本的适当的 setuptools egg 文件(当然,用户需要 Python 2.3.5 以上的版本,64 位操作系统的用户则需要 Python 2.4 以上的版本)。此外,这段脚本还会将可执行的 easy_install 脚本安装到用户所有的操作系统 Python 可执行脚本正常应该安装的位置(例如,Windows 用户会安装到 Python 安装目录下的 Scripts 目录中)。关于这种安装方法的更详细说明和注意事项,请参考其官方说明(见扩展阅读)。简单的安装命令如下: wget -q ez_setup。py下载地址(见扩展阅读) 安装完后,最好确保<h3 style="line-height:32.76px;color:rgb(56,u5b8bu4f53;"><span style="font-size:12px;line-height:22.75px;background-color:rgb(255,255);"><a name="3_2" style="color:rgb(28,172);line-height:22.75px;"><span style="line-height:22.75px;">(方法二). 使用完整的安装包安装<span style="line-height:22.75px;">setuptools<span style="font-size:12px;line-height:22.75px;color:rgb(56,255);"> 当然,用户也可以直接使用 setuptools发布版本来安装。对于使用 Windows 的用户,这也是挺方便的方法,许多 Linux 发行版的官方包管理仓库都包含 setuptools 的某个版本。例如,如果你跟我一样使用 Ubuntu ,那安装 setuptools 只是简单的进行如下操作: # apt-get install python-setuptools<h3 style="line-height:32.76px;color:rgb(56,255);"><a name="4_1" style="color:rgb(28,172);line-height:22.75px;"><span style="line-height:22.75px;">安装<span style="color:#0000ff;line-height:22.75px;">?easy_install package-name,比如 easy_install pylab<h3 style="line-height:32.76px;color:rgb(56,255);"><a name="4_2" style="color:rgb(28,172);line-height:22.75px;"><span style="line-height:22.75px;">模块卸载?easy_install -m package-name, 比如easy_install -m pylab<h3 style="line-height:32.76px;color:rgb(56,255);"><span style="font-size:12px;color:#0000ff;line-height:22.75px;">easy_install -m 包名,可以卸载软件包,但是卸载后还要手动删除遗留文件。 <p style="line-height:28px;color:rgb(56,255);"><span style="font-size:12px;line-height:22.75px;">setuptools它可以自动的安装模块,只需要你提供给它一个模块名字就可以,并且自动帮你解决模块的依赖问题。一般情况下用setuptools给安装的模块会自动放到一个后缀是.egg的目录里。 <span style="background-color:rgb(255,u5b8bu4f53;">在Windows里,<span style="font-size:12px;line-height:22.75px;color:rgb(56,u5b8bu4f53;">easy_install这个命令在python安装目录下的scripts里面,所以需要把scripts加到环境变量的PATH里,这样用起来就更方便,linux下不需要注意这个问题。 转自:http://blog.163.com/yang_jianli/blog/static/161990006201162152724339/ (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |