Python <= 2.3
python -c "import SimpleHTTPServer as s; s.test();" 8000

Python >= 2.4
python -m SimpleHTTPServer 8000

Python 3.x
python -m http.server 8000

相关文章:

  • 2021-07-03
  • 2021-12-27
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-17
猜你喜欢
  • 2021-08-28
  • 2022-12-23
  • 2022-01-19
  • 2022-01-01
  • 2021-09-23
  • 2022-12-23
相关资源
相似解决方案