Error: No module named SimpleHTTPServer

While running command "python -m SimpleHTTPServer" you may get error "No module named SimpleHTTPServer"

If you are using python 3 and above you may want to execute below command as SimpleHttpServer module is integrated in http.server
"python3 -m http.server"

Else try installing the SimpleHTTPServer module.

No comments:

Post a Comment

Golang: Http POST Request with JSON Body example

Go standard library comes with "net/http" package which has excellent support for HTTP Client and Server.   In order to post JSON ...