python嵌入式版本安裝openpyxl失敗解決方法


使用嵌入式版本安裝第三方包時會引用本機緩存的et_xmlfile,

所以會有如下錯誤.

D:\Projects\Inspect\python-3.8.1>python.exe -m pip install openpyxl --cache-dir D:\ -i https://mirrors.aliyun.com/pypi/simple/
Looking in indexes: https://mirrors.aliyun.com/pypi/simple/
Collecting openpyxl
  Downloading https://mirrors.aliyun.com/pypi/packages/95/8c/83563c60489954e5b80f9e2596b93a68e1ac4e4a730deb1aae632066d704/openpyxl-3.0.3.tar.gz (172 kB)
     |████████████████████████████████| 172 kB 1.7 MB/s
Collecting jdcal
  Downloading https://mirrors.aliyun.com/pypi/packages/f0/da/572cbc0bc582390480bbd7c4e93d14dc46079778ed915b505dc494b37c57/jdcal-1.4.1-py2.py3-none-any.whl (9.5 kB)
Collecting et_xmlfile
  Downloading https://mirrors.aliyun.com/pypi/packages/22/28/a99c42aea746e18382ad9fb36f64c1c1f04216f41797f2f0fa567da11388/et_xmlfile-1.0.1.tar.gz (8.4 kB)
    ERROR: Command errored out with exit status 1:
     command: 'D:\Projects\Inspect\python-3.8.1\python.exe' -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\STEVENNL\\AppData\\Local\\Temp\\pip-install-tdhu2qlz\\et-xmlfile\\setup.py'"'"'; __file__='"'"'C:\\Users\\STEVENNL\\AppData\\Local\\Temp\\pip-install-tdhu2qlz\\et-xmlfile\\setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\STEVENNL\AppData\Local\Temp\pip-install-tdhu2qlz\et-xmlfile\pip-egg-info'
         cwd: C:\Users\STEVENNL\AppData\Local\Temp\pip-install-tdhu2qlz\et-xmlfile\
    Complete output (5 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\STEVENNL\AppData\Local\Temp\pip-install-tdhu2qlz\et-xmlfile\setup.py", line 40, in <module>
        from et_xmlfile import (
    ModuleNotFoundError: No module named 'et_xmlfile'
    ----------------------------------------
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.

 

嵌入式安裝第三方包:https://www.jianshu.com/p/d4d40cb403d6

解決方法:

下載et_xmlfile,並解壓,然后復制解壓后的et_xmlfile,et_xmlfile.egg-info兩個文件夾到site-packages下

然后再安裝openpyxl:python.exe -m pip install openpyxl


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM