1. 程式人生 > >分享:當pip 無法安裝openpyxl模組時......

分享:當pip 無法安裝openpyxl模組時......

python中 openpyxl是解析 .xlsx 檔案的模組,一般使用pip install openpyxl 就可以安裝。

[[email protected] ~]$ sudo pip install openpyxl [sudo] h_pw 的密碼: Collecting openpyxl   Downloading https://files.pythonhosted.org/packages/e5/0a/e0a095149a23cedd9c8db6cdde2af7f82105e219e14edea0c31a19aeff9e/openpyxl-2.5.8.tar.gz (1.9MB)     100% |████████████████████████████████| 2.0MB 303kB/s  Collecting jdcal (from openpyxl)   Downloading https://files.pythonhosted.org/packages/a0/38/dcf83532480f25284f3ef13f8ed63e03c58a65c9d3ba2a6a894ed9497207/jdcal-1.4-py2.py3-none-any.whl Collecting et_xmlfile (from openpyxl)   Downloading https://files.pythonhosted.org/packages/22/28/a99c42aea746e18382ad9fb36f64c1c1f04216f41797f2f0fa567da11388/et_xmlfile-1.0.1.tar.gz Installing collected packages: jdcal, et-xmlfile, openpyxl   Running setup.py install for et-xmlfile ... done   Running setup.py install for openpyxl ... done Successfully installed et-xmlfile-1.0.1 jdcal-1.4 openpyxl-2.5.8  

有時,由於許可權問題,我們無法使用pip安裝,可以去pypi 下載 安裝包進行安裝。網址是:https://pypi.org/

在搜尋欄輸入要查詢的模組名字,當然任何已釋出的模組你都可以到這裡尋找。

提示:

只下載 openpyxl 模組是無法安裝成功的,你要先下載安裝jdcal, et-xmlfile模組。

安裝方法:解壓下載的安裝包,進入包含setup.py檔案的目錄,在終端執行命令:python setup.py install 

如此,便安裝成功。希望對讀者有些幫助。