- Visit the official Python website: https://www.python.org/downloads/
- Click the big yellow "Download Python" button (this will get the latest version)
- Run the downloaded installer
- Important: On the first installation screen, check the box that says "Add Python to PATH"
- Click "Install Now"
- Wait for the installation to complete and click "Close"
- Download Git from: https://git-scm.com/download/windows
- Run the installer
- You can keep all the default options during installation - just keep clicking "Next"
- Click "Install" when you reach that screen
- Click "Finish" when installation is complete
- Open Command Prompt:
- Press Windows key + R
- Type
cmd
and press Enter
- Navigate to where you want to download the script:
cd Desktop
- Clone this repository:
git clone https://github.com/hezy/ODR-example.git
- Enter the project directory:
cd ODR-example
- Make sure you're in the project directory (from Step 3)
- Install required packages:
pip install -r requirements.txt
You're now ready to use the script! See the Usage section for how to run it.
- If you get "'python' is not recognized": Restart your Command Prompt and try again
- If you get "'git' is not recognized": Restart your Command Prompt and try again
- If you get errors during pip install: Try running:
python -m pip install --upgrade pip
python -m pip install -r requirements.txt