在公司用pip安裝openpyxl庫時,執行pip install openpyxl 后,報錯:Could not find a version that satisfies the requirement jdcal (from openpyxl) (from versions: ) No matching distribution found for jdcal (from openpyxl)

后來才知道公司電腦內網問題,無法直接用pip來安裝,只能離線下載openpyxl壓縮包進行安裝,步驟如下:
1、下載openpyxl 安裝包:https://pypi.org/project/openpyxl/#files,點擊紅框內的壓縮包進行下載

2、下載完成后,進行解壓,然后在cmd中,進入解壓后的文件夾內,執行python setup.py install 就可以了

