0

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

Meroz
  • 859
  • 2
  • 8
  • 28

1 Answers1

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