這篇文章主要介紹了關於windows下安裝Python的XlsxWriter模組方法,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下
在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/
相關推薦:
##使用python實作XlsxWriter建立Excel檔案並編輯
###############################
以上是windows下安裝Python的XlsxWriter模組方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!