Anaconda Terminal error pywin32_bootstrap

前端 未结 3 1054
闹比i
闹比i 2021-02-15 18:49

I got this error in my Anaconda Navigator base Terminal:

Traceback (most recent call last):
    File \"C:\\Users\\myusername\\AppData\\Local\\Continuum\\anaconda         


        
相关标签:
3条回答
  • 2021-02-15 19:18

    I got the same error during pip install, and I solved it by installing build 225 of pywin32 instead of the latest version:

    pip install pywin32==225
    
    0 讨论(0)
  • 2021-02-15 19:23

    try pip install --ignore-installed pywin32 to reinstall pywin32

    quote: How to fix 'ImportError: DLL load failed while importing win32api'

    0 讨论(0)
  • 2021-02-15 19:34

    I followed soberWolf's suggestion, but needed to add the --user switch as the permissions seem a little off, so pip install --ignore-installed pywin32 --user

    0 讨论(0)
提交回复
热议问题