Getting error while running pip3 install smtp

Viewed 28

I was trying to operate a toll but when I was listing all the commands so there is a command I.e. pip3 install smtp and I got an error I.e.

ERROR: Could not find a version that satisfies the requirement smtp (from versions: none)

ERROR: No matching distribution found for smtp

Can anyone tell me the solution?

1 Answers

There isn't a package called smtp in python package index (PyPI). Maybe you meant to use smtpemail, secure-smtplib or smtplibaio? That, or you're missing a dependency.

Related