Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Anaconda Terminal error pywin32_bootstrap

I got this error in my Anaconda Navigator base Terminal:

Traceback (most recent call last):
    File "C:\Users\myusername\AppData\Local\Continuum\anaconda3\lib\site.py", line 168, in addpackage
      exec(line)
    File "<string>", line 1, in <module>
  ModuleNotFoundError: No module named 'pywin32_bootstrap'

Remainder of file ignored

How can i fix this?

like image 954
UserX Avatar asked Nov 22 '19 07:11

UserX


2 Answers

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
like image 119
cbrahms Avatar answered Nov 22 '22 04:11

cbrahms


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

like image 39
markthebrewer Avatar answered Nov 22 '22 05:11

markthebrewer