|
The default port number is 5000, you can modify app.run(host='0.0.0.0', threaded=True) in the file app.py app.run(host='0.0.0.0', port = 5000, threaded=True), change 5000 to the port number you need to set, but you have to consider whether this port number is occupied |
|