Skip to content
Open
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
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,15 @@ NOTE: The default configuration will build 64-bit binaries for maximum security

1. Setup the following:
* 7-Zip
* Python 3.8 or above
* Python 3.8 or above (see note below for Python 3.12 or later)
* Can be installed using WinGet or the Microsoft Store.
* If you don't plan on using the Microsoft Store version of Python:
* Check "Add python.exe to PATH" before install.
* At the end of the Python installer, click the button to lift the `MAX_PATH` length restriction.
* Disable the `python3.exe` and `python.exe` aliases in `Settings > Apps > Advanced app settings > App execution aliases`. They will typically be referred to as "App Installer". See [this question on stackoverflow.com](https://stackoverflow.com/questions/57485491/python-python3-executes-in-command-prompt-but-does-not-run-correctly) to understand why.
* Ensure that your Python directory either has a copy of Python named "python3.exe" or a symlink linking to the Python executable.
* The `httplib2` module. This can be installed using `pip install`.
* For Python 3.12 and later: the build.py script relies on distutils, which is removed from the standard library in 3.12. It is now provided by the setuptools library. Install it via `pip install setuptools`.
* Make sure to lift the `MAX_PATH` length restriction, either by clicking the button at the end of the Python installer or by [following these instructions](https://learn.microsoft.com/en-us/windows/win32/fileio/maximum-file-path-limitation?tabs=registry#:~:text=Enable,Later).
* Git (to fetch all required ungoogled-chromium scripts)
* During setup, make sure "Git from the command line and also from 3rd-party software" is selected. This is usually the recommended option.
Expand Down