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

  1. Click this link: Python 3.13.6 Release.
  2. Scroll down. Find the one or two Windows versions listed. Click the 64-bit installer link. The browser downloads automatically.

Step 2: Install Python

  1. In Chrome, click the download icon, open the installer wizard.
  2. Let the wizard run automatically. Do not change anything unless you know why.
  3. Installation completes. Python is now on your system.

Step 3: Run Local Website

  1. Open PowerShell.
  2. Paste the following code to start a local server:
    python -m http.server 8000
  3. 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.