Set up Python simpleHTTPserver on Windows [duplicate] Set up Python simpleHTTPserver on Windows [duplicate] python python

Set up Python simpleHTTPserver on Windows [duplicate]


From Stack Overflow question What is the Python 3 equivalent of "python -m SimpleHTTPServer":

The following works for me:

python -m http.server [<portNo>]

Because I am using Python 3 the module SimpleHTTPServer has been replaced by http.server, at least in Windows.