Skip to content

Commit f47d94d

Browse files
authored
Update installation.md Python 3 command to python3 (#5713)
* Update installation.md Python 3 command to `python3` When following the instructions on macOS, after installing the recommended version of Python from python.org, I found that the Python 3 executable is `python3`, not `python`. Some quick internet searching suggests that `python3` is probably the most reliable command to run across multiple OSes. * Update installation.md
1 parent 161d2d5 commit f47d94d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/introduction/installation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ editors. Both support remixing or forking:
5555
For the options below, we should develop projects using a local server so that
5656
files are properly served. Options of local servers include:
5757

58-
- Running `npm i -g five-server@latest && five-server --port=8000` in a terminal
58+
- Run `npm i -g five-server@latest && five-server --port=8000` in a terminal
5959
in the same directory as your HTML file.
60-
- Running `python -m SimpleHTTPServer` (or `python -m http.server` for Python 3)
61-
in a terminal in the same directory as your HTML file.
60+
- Run `python3 -m http.server` in a terminal in the same directory as your
61+
HTML file.
6262

6363
Once we are running our server, we can open our project in the browser using
6464
the local URL and port which the server is running on (e.g.,

0 commit comments

Comments
 (0)