8000 Update installation.md Python 3 command to `python3` by daj · Pull Request #5713 · aframevr/aframe · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Update installation.md Python 3 command to python3 #5713

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 7, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/introduction/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ editors. Both support remixing or forking:
For the options below, we should develop projects using a local server so that
files are properly served. Options of local servers include:

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

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