Wboy
Wboy

Reputation: 2552

yagmail installation win32ctypes matching distribution not found error

yagmail was working for me, this is the first time ive tried it since I upgraded to python 3.5, and it doesnt work. I uninstalled yagmail and tried to pip install it again but it showed me this error on no matching distribution found for win32ctypes?

https://i.sstatic.net/wyzIF.jpg

Any help will be appreciated. Thanks!

Upvotes: 1

Views: 252

Answers (1)

PascalVKooten
PascalVKooten

Reputation: 21451

It seems to be a keyring issue. Probably they need to support windows for Python3.5

You could try to see if their most recent version on git works:

pip uninstall keyring
pip install git+https://github.com/jaraco/keyring.git
pip install yagmail

Let me know, and feel free to open a ticket on github as well.

Not sure if that would work: there are no issues for Python 3.5 on OS' other than Windows.

Upvotes: 0

Related Questions