windows下安装Python的XlsxWriter模块方法


Posted in Python onMay 03, 2018

在windows环境下安装python的XlsxWriter模块,虽然很简单,但由于自己粗心,少了一个字符,导致不少的错误。。。

1、通过pip命令来安装。

C:\Users\Administrator>pip install XlsWriter 
Collecting XlsWriter 
 Could not find a version that satisfies the requirement XlsWriter (from versions: ) 
No matching distribution found for XlsWriter 
You are using pip version 7.1.2, however version 8.1.1 is available. 
You should consider upgrading via the 'python -m pip install --upgrade pip' command.

2、误以为是由于pip的版本太低,所以根据错误信息中的提示,更新pip

其中可以看到,会先下载,然后检测到有先前的版本,所以会先卸载,最后安装新版本的pip。

C:\Users\Administrator>python -m pip install --upgrade pip 
Collecting pip 
 Downloading pip-8.1.1-py2.py3-none-any.whl (1.2MB) 
 100% |????????????????????????????????| 1.2MB 61kB/s 
Installing collected packages: pip 
 Found existing installation: pip 7.1.2 
 Uninstalling pip-7.1.2: 
  Successfully uninstalled pip-7.1.2 
Successfully installed pip-8.1.1

3、再次尝试安装,还是报错,觉得很奇怪,到底是什么地方错了,仔细看了一下,才发现是犯了低级错误鄙视,应该是 XlsxWriter 而不是XlsWriter,就是少了一个字符x导致报错:找不到要求安装的XlsWriter的一个版本。

C:\Users\Administrator>pip install XlsWriter 
Collecting XlsWriter 
 Could not find a version that satisfies the requirement XlsWriter (from versions: ) 
No matching distribution found for XlsWriter

4、这次总算下载成功,并安装了大笑。

C:\Users\Administrator>pip install XlsxWriter 
Collecting XlsxWriter 
 Downloading XlsxWriter-0.8.6-py2.py3-none-any.whl (134kB) 
 100% |????????????????????????????????| 143kB 26kB/s 
Installing collected packages: XlsxWriter 
Successfully installed XlsxWriter-0.8.6

5、另一种方法是,通过eays_install来安装XlsxWriter模块。

C:\Users\Administrator>easy_install XlsxWriter 
Searching for XlsxWriter 
Best match: XlsxWriter 0.8.6 
Adding XlsxWriter 0.8.6 to easy-install.pth file 
 
Using c:\python27\lib\site-packages 
Processing dependencies for XlsxWriter 
Finished processing dependencies for XlsxWriter

6、接下来验证一下,是否安装成功。

这里打开cmd,输入python,这样就进入到python的交互环境。

最简单的方法就是 import 这个模块,如果没报错,就说明安装成功了。

这里特别要强调的是虽然上面的模块名称是XlsxWriter,但是在这里import时,都是小写的xlsxwriter,只要有一个字符不同,就会报错。

C:\Users\Administrator>python 
Python 2.7.11 (v2.7.11:6d1b6a68f775, Dec 5 2015, 20:40:30) [MSC v.1500 64 bit (AMD64)] on win32 
Type "help", "copyright", "credits" or "license" for more information. 
>>> import xlsxwriter 
>>>

不得不说,安装python的各种模块,非常的方便,很赞大笑

关于XlsxWriter模块的详细参考信息可以查阅:https://xlsxwriter.readthedocs.io/

以上这篇windows下安装Python的XlsxWriter模块方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
pymongo为mongodb数据库添加索引的方法
May 11 Python
Python中str.join()简单用法示例
Mar 20 Python
基于python绘制科赫雪花
Jun 22 Python
对python产生随机的二维数组实例详解
Dec 13 Python
python中的数据结构比较
May 13 Python
python实战串口助手_解决8串口多个发送的问题
Jun 12 Python
Python学习笔记之Django创建第一个数据库模型的方法
Aug 07 Python
python脚本后台执行方式
Dec 21 Python
Keras实现将两个模型连接到一起
May 23 Python
python批量生成身份证号到Excel的两种方法实例
Jan 14 Python
Keras多线程机制与flask多线程冲突的解决方案
May 28 Python
Pytorch中Softmax和LogSoftmax的使用详解
Jun 05 Python
python使用openpyxl库修改excel表格数据方法
May 03 #Python
python实现跨excel的工作表sheet之间的复制方法
May 03 #Python
Python利用openpyxl库遍历Sheet的实例
May 03 #Python
python实现简单淘宝秒杀功能
May 03 #Python
Python实现的求解最小公倍数算法示例
May 03 #Python
Python实现的求解最大公约数算法示例
May 03 #Python
Python实现的质因式分解算法示例
May 03 #Python
You might like
PHP小技巧搜集,每个PHPer都来露一手
2007/01/02 PHP
php下载文件的代码示例
2012/06/29 PHP
php GUID生成函数和类
2014/03/10 PHP
PHP模拟post提交数据方法汇总
2016/02/16 PHP
php实现数字补零的方法总结
2018/09/12 PHP
针对PHP开发安全问题的相关总结
2019/03/22 PHP
图片格式的JavaScript和CSS速查手册
2007/08/20 Javascript
javascript string字符串优化问题
2011/07/31 Javascript
js密码强度实时检测代码
2016/03/02 Javascript
第三篇Bootstrap网格基础
2016/06/21 Javascript
AngularJS指令详解及示例代码
2016/08/16 Javascript
遍历js中对象的属性和值的实例
2016/11/21 Javascript
JavaScript如何一次性展示几万条数据
2017/03/30 Javascript
Javascript ES6中对象类型Sets的介绍与使用详解
2017/07/17 Javascript
js实现加载页面就自动触发超链接的示例
2017/08/31 Javascript
vue-cli3 热更新配置操作
2020/09/18 Javascript
Python中unittest模块做UT(单元测试)使用实例
2015/06/12 Python
Python操作MongoDB详解及实例
2017/05/18 Python
Python编程实现线性回归和批量梯度下降法代码实例
2018/01/04 Python
Python3之不使用第三方变量,实现交换两个变量的值
2019/06/26 Python
Python3简单爬虫抓取网页图片代码实例
2019/08/26 Python
Python搭建Keras CNN模型破解网站验证码的实现
2020/04/07 Python
Pycharm中安装wordcloud等库失败问题及终端通过pip安装的Python库如何添加到Pycharm解释器中(推荐)
2020/05/10 Python
用python实现前向分词最大匹配算法的示例代码
2020/08/06 Python
通过代码实例了解Python异常本质
2020/09/16 Python
使用CSS3实现圆角,阴影,透明
2014/12/23 HTML / CSS
HTML5之web workers_动力节点Java学院整理
2017/07/17 HTML / CSS
汇智创新科技发展有限公司
2015/12/06 面试题
医科大学生毕业的自我评价分享
2013/11/12 职场文书
客服文员岗位职责
2013/11/29 职场文书
新娘父亲婚礼致辞
2014/01/16 职场文书
技校毕业生自荐信范文
2014/03/07 职场文书
公司投资建议书
2014/05/16 职场文书
揭牌仪式策划方案
2014/05/28 职场文书
高中班级口号
2014/06/09 职场文书
党校学习心得体会范文
2014/09/09 职场文书