windows下安装Python的XlsxWriter模块方法
在windows环境下安装python的XlsxWriter模块,虽然很简单,但由于自己粗心,少了一个字符,导致不少的错误。。。
1、通过pip命令来安装。
C:\Users\Administrator>pipinstallXlsWriter CollectingXlsWriter CouldnotfindaversionthatsatisfiestherequirementXlsWriter(fromversions:) NomatchingdistributionfoundforXlsWriter Youareusingpipversion7.1.2,howeverversion8.1.1isavailable. Youshouldconsiderupgradingviathe'python-mpipinstall--upgradepip'command.
2、误以为是由于pip的版本太低,所以根据错误信息中的提示,更新pip
其中可以看到,会先下载,然后检测到有先前的版本,所以会先卸载,最后安装新版本的pip。
C:\Users\Administrator>python-mpipinstall--upgradepip Collectingpip Downloadingpip-8.1.1-py2.py3-none-any.whl(1.2MB) 100%|████████████████████████████████|1.2MB61kB/s Installingcollectedpackages:pip Foundexistinginstallation:pip7.1.2 Uninstallingpip-7.1.2: Successfullyuninstalledpip-7.1.2 Successfullyinstalledpip-8.1.1
3、再次尝试安装,还是报错,觉得很奇怪,到底是什么地方错了,仔细看了一下,才发现是犯了低级错误鄙视,应该是XlsxWriter而不是XlsWriter,就是少了一个字符x导致报错:找不到要求安装的XlsWriter的一个版本。
C:\Users\Administrator>pipinstallXlsWriter CollectingXlsWriter CouldnotfindaversionthatsatisfiestherequirementXlsWriter(fromversions:) NomatchingdistributionfoundforXlsWriter
4、这次总算下载成功,并安装了大笑。
C:\Users\Administrator>pipinstallXlsxWriter CollectingXlsxWriter DownloadingXlsxWriter-0.8.6-py2.py3-none-any.whl(134kB) 100%|████████████████████████████████|143kB26kB/s Installingcollectedpackages:XlsxWriter SuccessfullyinstalledXlsxWriter-0.8.6
5、另一种方法是,通过eays_install来安装XlsxWriter模块。
C:\Users\Administrator>easy_installXlsxWriter SearchingforXlsxWriter Bestmatch:XlsxWriter0.8.6 AddingXlsxWriter0.8.6toeasy-install.pthfile Usingc:\python27\lib\site-packages ProcessingdependenciesforXlsxWriter FinishedprocessingdependenciesforXlsxWriter
6、接下来验证一下,是否安装成功。
这里打开cmd,输入python,这样就进入到python的交互环境。
最简单的方法就是import这个模块,如果没报错,就说明安装成功了。
这里特别要强调的是虽然上面的模块名称是XlsxWriter,但是在这里import时,都是小写的xlsxwriter,只要有一个字符不同,就会报错。
C:\Users\Administrator>python Python2.7.11(v2.7.11:6d1b6a68f775,Dec52015,20:40:30)[MSCv.150064bit(AMD64)]onwin32 Type"help","copyright","credits"or"license"formoreinformation. >>>importxlsxwriter >>>
不得不说,安装python的各种模块,非常的方便,很赞大笑
关于XlsxWriter模块的详细参考信息可以查阅:https://xlsxwriter.readthedocs.io/
以上这篇windows下安装Python的XlsxWriter模块方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持毛票票。
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:czq8825#qq.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。