Python如何安装第三方模块


Posted in Python onMay 28, 2020

Python中有哪几种方法安装第三方模块,安装Python第三方模块的方法有很多,这里介绍三种方法安装第三方模块。

【方法一】: 通过setuptools来安装python模块

首先下载 http://peak.telecommunity.com/dist/ez_setup.py

NOTE: 最好下载个setuptools,本人是15.2版本,里面包含了ez_setup

运行 python ez_setup.py

D:\work\installation\setuptools-15.2\setuptools-15.2>python ez_setup.py > 1.txt
Extracting in c:\users\admini~1\appdata\local\temp\tmpbxikxf 
Now working in c:\users\admini~1\appdata\local\temp\tmpbxikxf\setuptools-15.2
Installing Setuptools 
...... 
Copying setuptools-15.2-py2.7.egg to c:\python27\lib\site-packages 
setuptools 15.2 is already the active version in easy-install.pth 
Installing easy_install-script.py script to C:\Python27\Scripts 
Installing easy_install.exe script to C:\Python27\Scripts 
Installing easy_install-2.7-script.py script to C:\Python27\Scripts 
Installing easy_install-2.7.exe script to C:\Python27\Scripts 
Installed c:\python27\lib\site-packages\setuptools-15.2-py2.7.egg
Processing dependencies for setuptools==15.2
Finished processing dependencies for setuptools==15.2

运行 easy_install py

D:\work>easy_install py   #py 为第三方库文件 
Searching for py 
Best match: py 1.4.26
Adding py 1.4.26 to easy-install.pth file
Using c:\python27\lib\site-packages 
Processing dependencies for py 
Finished processing dependencies for py

【方法二】: 通过pip来安装python模块

安装 easy_install pip

D:\work>easy_install pip 
Searching for pip 
Best match: pip 6.1.1
Processing pip-6.1.1-py2.7.egg
pip 6.1.1 is already the active version in easy-install.pth 
Installing pip-script.py script to C:\Python27\Scripts 
Installing pip.exe script to C:\Python27\Scripts 
Installing pip2.7-script.py script to C:\Python27\Scripts 
Installing pip2.7.exe script to C:\Python27\Scripts 
Installing pip2-script.py script to C:\Python27\Scripts 
Installing pip2.exe script to C:\Python27\Scripts 
Using c:\python27\lib\site-packages\pip-6.1.1-py2.7.egg
Processing dependencies for pip 
Finished processing dependencies for pip

运行 pip install xlrd

Usage:  
 pip <command></command> [options] 
Commands: 
 install      Install packages. 
 uninstall     Uninstall packages. 
 freeze      Output installed packages in requirements format. 
 list      List installed packages. 
 show      Show information about installed packages. 
 search      Search PyPI for packages. 
 wheel      Build wheels from your requirements. 
 zip       DEPRECATED. Zip individual packages. 
 unzip      DEPRECATED. Unzip individual packages. 
 help      Show help for commands. 
General Options: 
 -h, --help     Show help. 
 --isolated     Run pip in an isolated mode, ignoring 
        environment variables and user configuration. 
 -v, --verbose    Give more output. Option is additive, and can be 
        used up to 3 times. 
 -V, --version    Show version and exit. 
 -q, --quiet     Give less output. 
 --log <path>    Path to a verbose appending log. 
 --proxy <proxy>    Specify a proxy in the form 
        [user:passwd@]proxy.server:port. 
 --retries <retries>   Maximum number of retries each connection should 
        attempt (default 5 times). 
 --timeout <sec>    Set the socket timeout (default 15 seconds). 
 --exists-action <action> Default action when a path already exists: 
        (s)witch, (i)gnore, (w)ipe, (b)ackup. 
 --trusted-host <hostname> Mark this host as trusted, even though it does 
        not have valid or any HTTPS. 
 --cert <path>    Path to alternate CA bundle. 
 --client-cert <path>  Path to SSL client certificate, a single file
        containing the private key and the certificate 
        in PEM format. 
 --cache-dir <dir>   Store the cache data in <dir>. 
 --no-cache-dir    Disable the cache. 
 --disable-pip-version-check 
        Don't periodically check PyPI to determine 
        whether a new version of pip is available for
        download. Implied with --no-index.

【方法三】:直接从网上下载下可执行文件来安装.

比如说,去 >>> pythonlibs <<< 网站,提供了很多Python非官方包下载,二进制文件,下载安装方便。

到此这篇关于Python如何安装第三方模块的文章就介绍到这了,更多相关Python安装第三方模块的方法内容请搜索三水点靠木以前的文章或继续浏览下面的相关文章希望大家以后多多支持三水点靠木!

Python 相关文章推荐
python数据结构之二叉树的建立实例
Apr 29 Python
Python中的ctime()方法使用教程
May 22 Python
Python 操作MySQL详解及实例
Apr 30 Python
Python内置函数——__import__ 的使用方法
Nov 24 Python
Python抓取聚划算商品分析页面获取商品信息并以XML格式保存到本地
Feb 23 Python
python spyder中读取txt为图片的方法
Apr 27 Python
tensorflow学习教程之文本分类详析
Aug 07 Python
Python使用itchat模块实现群聊转发,自动回复功能示例
Aug 26 Python
Python 装饰器@,对函数进行功能扩展操作示例【开闭原则】
Oct 17 Python
python使用numpy实现直方图反向投影示例
Jan 17 Python
python 中不同包 类 方法 之间的调用详解
Mar 09 Python
对Keras自带Loss Function的深入研究
May 25 Python
python使用多线程+socket实现端口扫描
May 28 #Python
Python如何实现定时器功能
May 28 #Python
python实点云分割k-means(sklearn)详解
May 28 #Python
Python脚本实现监听服务器的思路代码详解
May 28 #Python
python中Ansible模块的Playbook的具体使用
May 28 #Python
python中如何进行连乘计算
May 28 #Python
python线程池如何使用
May 28 #Python
You might like
php 引用(&amp;)详解
2009/11/20 PHP
PHP错误WARNING: SESSION_START() [FUNCTION.SESSION-START]解决方法
2014/05/04 PHP
PHP使用Pthread实现的多线程操作实例
2015/11/14 PHP
Ajax请求PHP后台接口返回信息的实例代码
2018/08/21 PHP
Javascript中的delete操作符详细介绍
2014/06/06 Javascript
jQuery插件PageSlide实现左右侧栏导航菜单
2015/04/12 Javascript
JS+CSS实现的日本门户网站经典选项卡导航效果
2015/09/27 Javascript
JavaScript SweetAlert插件实现超酷消息警告框
2016/01/28 Javascript
基于JavaScript实现智能右键菜单
2016/03/02 Javascript
详解js中call与apply关键字的作用
2016/11/21 Javascript
使用Node.js搭建静态资源服务详细教程
2017/08/02 Javascript
vue下跨域设置的相关介绍
2017/08/26 Javascript
Vue 使用 Mint UI 实现左滑删除效果CellSwipe
2018/04/27 Javascript
vue2.0 自定义组件的方法(vue组件的封装)
2018/06/05 Javascript
JavaScript享元模式原理与用法实例详解
2020/03/09 Javascript
Sublime Text3 配置 NodeJs 环境的方法
2020/05/20 NodeJs
js实现随机圆与矩形功能
2020/10/29 Javascript
python获取各操作系统硬件信息的方法
2015/06/03 Python
Python基于递归算法求最小公倍数和最大公约数示例
2018/07/27 Python
python字典嵌套字典的情况下找到某个key的value详解
2019/07/10 Python
解决Django中调用keras的模型出现的问题
2019/08/07 Python
pycharm中选中一个单词替换所有重复单词的实现方法
2020/11/17 Python
用HTML5实现网站在windows8中贴靠的方法
2013/04/21 HTML / CSS
印尼在线精品店:Berrybenka.com
2016/10/22 全球购物
Java面试题:请说出如下代码的输出结果
2013/04/22 面试题
销售自我评价
2013/10/22 职场文书
七年级地理教学反思
2014/01/26 职场文书
《蝙蝠和雷达》教学反思
2014/04/23 职场文书
中国梦演讲稿5分钟
2014/08/19 职场文书
公安局副政委班子个人对照检查材料
2014/10/04 职场文书
评职称个人总结
2015/03/05 职场文书
热血教师观后感
2015/06/10 职场文书
2016年春季运动会通讯稿
2015/11/25 职场文书
《群青的幻想曲》京力秋树角色PV公开
2022/04/08 日漫
使用python绘制分组对比柱状图
2022/04/21 Python
Shell中的单中括号和双中括号的用法详解
2022/12/24 Servers