1
0
Fork 0
forked from github/pelican

Merge pull request #1582 from ingwinlu/quickstart_python_python2

DOCS: http server module for python3 is different then python2
This commit is contained in:
Justin Mayer 2015-02-17 11:11:14 -08:00
commit 1301343d1d

View file

@ -64,7 +64,7 @@ Open a new terminal session and run the following commands to switch to your
``output`` directory and launch Python's built-in web server::
cd ~/projects/yoursite/output
python -m SimpleHTTPServer
python -m SimpleHTTPServer # -m http.server if you use python3
Preview your site by navigating to http://localhost:8000/ in your browser.