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