python快速开启http文件下载 Posted on 2025-06-12 Edited on 2025-06-21 Views: python2# 默认端口 8000 python2 -m SimpleHTTPServer # 自定义端口8080 python2 -m SimpleHTTPServer 8080 python3# 默认监听8000 python3 -m http.server # 自定义监听端口 python3 -m http.server 8080