I'm working on project in python, and I need to get access to Outlook.
I tried every solution that was suggested in the past questions on that topic, but nothing works.
Installed pywin32 and pypiwin32, they appear in pip list.
But still cant import "win32com.client" to my project, same error as before:
ModuleNotFoundError: No module named 'win32com'.
Things I've tried:
Installing with pip as said before.
I tried to install "pywin32" from:
https://github.com/mhammond/pywin32/releases
- Running the command: python pywin32_postinstall.py -install in the python directory.
All of this installs was successfull, but the "import win32com.client" not working.
EDIT:
I updated my pip version in project interpreter:
Pycharm > file> settings> project>project interpreter
and after this, installed the "pypiwin32" with project interpreter, finally it solved the problem.