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
If you already have python 3
installed, just run:
python -m http.server
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.
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