I have missing module and I don't know how do I install this. Is there a newer version? I want to do something like: python3.6 -m smtpd -n -c DebuggingServer localhost:1025
Asked
Active
Viewed 1,026 times
0

Meroz
- 859
- 2
- 8
- 28
-
You can download the package and just `python setup.py install` from the directory root look [here](https://pypi.python.org/pypi/smtpd-tls/0.1) – Seraf May 26 '17 at 19:56
-
https://docs.python.org/3/library/smtpd.html#smtpd.SMTPServer .. – RïshïKêsh Kümar May 26 '17 at 20:07
1 Answers
0
Try This.. For Python: 3.6
From pip install Smtpd
pip install smtpd-tls
install the latest version of a module and its dependencies from the Python Packaging
python -m pip install SomePackage
For Specific Version and Minimum Version Install
python -m pip install SomePackage==3.6.1 # specific version
python -m pip install "SomePackage>=1.0.4" # minimum version
For More Read This : https://docs.python.org/3/installing/index.html
For Smtpd Read This : https://pypi.python.org/pypi/smtpd-tls/0.1

RïshïKêsh Kümar
- 4,734
- 1
- 24
- 36