You can fix with this code:
import http.server
import socketserver
PORT = 5055
Handler = http.server.SimpleHTTPRequestHandler
httpd = socketserver.TCPServer(("", PORT), Handler)
print("serving at port", PORT)
httpd.serve_forever()
If not work you can use this:
py -3 -m http.server 5055
(Note: Make sure you are in the src folder.)
You can fix with this code:
If not work you can use this:
(Note: Make sure you are in the
srcfolder.)