1# If Python version is 3.X
2python3 -m http.server
3
4# If Python version is 2.X
5python -m SimpleHTTPServer
1# If Python version returned above is 3.X
2python3 -m http.server
3# On windows try "python" instead of "python3", or "py -3"
4# If Python version returned above is 2.X
5python -m SimpleHTTPServer