I tried to install python module via pip, but it was not successful. can any one help me to install smtplib python module in ubuntu 12.10 OS?
- duplicate: stackoverflow.com/questions/19034959/…awbemauler– awbemauler2015-08-03 20:29:44 +00:00Commented Aug 3, 2015 at 20:29
- 6smtplib is installed by default. You do not need to install it. The module is part of the default python package.kasper Taeymans– kasper Taeymans2015-08-03 20:31:37 +00:00Commented Aug 3, 2015 at 20:31
4 Answers
I will tell you a probable why you might be getting error like Error no module smtplib
I had created program as email.py
Now email is a module in python and because of that it start giving error for smtplib also
then I had to delete email.pyc file created and then rename email.py to mymail.py
After that no error of smtplib
Make sure your file name is not conflicting with the python module. Also see because of that any *.pyc file created inside the folder
Comments
For Linux based distro, it is easy to install from source. Just download the source code from here, extract it and open in a terminal. Now sudo python3 setup.py install Installation should be complete in seconds