Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在从 powershell 运行 SimpleHTTPServer。
python -m SimpleHTTPServer 8080
我想在不关闭终端的情况下退出(控制+中断)服务器。有任何想法吗?
在此先感谢您的任何建议
^C 将关闭它 (control + c)
我测试 control + c 以发送中断和退出的示例:
PS C:\> python -m http.server 8080 Serving HTTP on 0.0.0.0 port 8080 ... Keyboard interrupt received, exiting.
请注意,我使用的是 http.server,因为它替换了 Python 3 中的 SimpleHTTPServer,但它对您来说应该是一样的。