How to start python simpleHTTPServer on Windows 10

后端 未结 3 973
野性不改
野性不改 2021-02-10 23:29

I recently bought a Windows 10 machine and now I want to run a server locally for testing a webpage I am developing.

On Windows 7 it was always very simple to start a HT

相关标签:
3条回答
  • 2021-02-10 23:56

    If you already have python 3 installed, just run:

    python -m http.server 
    
    0 讨论(0)
  • 2021-02-10 23:57

    Ok, so different commands is apparently needed.

    This works:

    C:\pathToIndexfile\py -m http.server

    As pointed out in a comment, the change to "http.server" is not because of windows, but because I changed from python 2 to python 3.

    0 讨论(0)
  • 2021-02-11 00:11

    On Windows, neither python nor python3 worked for me; the program just hangs there, doing nothing.

    However, I got it to work via ipython:

    ipython -m http.server 8000
    

    You need to install IPython beforehand, though:

    pip install ipython
    
    0 讨论(0)
提交回复
热议问题