Python 3.13 & Running a Local Website
This tutorial assumes discipline: read, follow instructions, execute. The steps are minimal but precise. No hand-holding.
Step 1: Download Python 3.13
- Click this link: Python 3.13.6 Release.
- Scroll down. Find the one or two Windows versions listed. Click the 64-bit installer link. The browser downloads automatically.
Step 2: Install Python
- In Chrome, click the download icon, open the installer wizard.
- Let the wizard run automatically. Do not change anything unless you know why.
- Installation completes. Python is now on your system.
Step 3: Run Local Website
- Open PowerShell.
- Paste the following code to start a local server:
python -m http.server 8000
- Navigate to your website folder and double-click your
index.html
to confirm your static site works.
Done. You are running your static website locally. Minimal clicks. Full control.