File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -266,9 +266,10 @@ Building requirements
266266---------------------
267267
268268- Any Python 3 installation
269- - Visual Studio Community 2019
269+ - Visual Studio Community 2022
270270- WSL2 with clang and Docker installed and configured
271271- MakePBO
272+ - uv
272273
273274Building
274275--------
@@ -278,12 +279,14 @@ Building
278279Run this on Windows (requires WSL2 and Docker to be installed and configured!)
279280
280281 python -m pip install -r requirements.txt
282+ powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
281283
282284 # Setup WSL for both x86 and x64 architectures
283285 wsl /bin/bash -ic "sudo dpkg --add-architecture i386"
284286 wsl /bin/bash -ic "sudo apt update"
285287 wsl /bin/bash -ic "sudo apt install python3-pip patchelf libcrypt1:i386 clang gcc-multilib"
286288 wsl /bin/bash -ic "python3 -m pip install -r requirements.txt"
289+ wsl /bin/bash -ic "curl -LsSf https://astral.sh/uv/install.sh | sh"
287290
288291 python tools\rebuild_all.py
289292
You can’t perform that action at this time.
0 commit comments