You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
1.3 KiB
27 lines
1.3 KiB
Invoke-WebRequest -URI https://www.python.org/ftp/python/3.10.9/python-3.10.9-embed-amd64.zip -O python_embeded.zip |
|
Expand-Archive python_embeded.zip |
|
rm python_embeded.zip |
|
cd python_embeded |
|
Add-Content -Path .\python310._pth -Value 'import site' |
|
Invoke-WebRequest -Uri https://bootstrap.pypa.io/get-pip.py -OutFile get-pip.py |
|
.\python.exe get-pip.py |
|
python -m pip wheel torch torchvision torchaudio --pre --extra-index-url https://download.pytorch.org/whl/nightly/cu118 -r ../ComfyUI/requirements.txt pygit2 -w ../temp_wheel_dir |
|
ls ../temp_wheel_dir |
|
.\python.exe -s -m pip install --pre (get-item ..\temp_wheel_dir\*) |
|
"../ComfyUI`n" + (Get-Content .\python310._pth -Raw) | Set-Content .\python310._pth |
|
cd .. |
|
|
|
mkdir ComfyUI_windows_portable_nightly_pytorch |
|
mv python_embeded ComfyUI_windows_portable_nightly_pytorch |
|
mv ComfyUI_copy ComfyUI_windows_portable_nightly_pytorch/ComfyUI |
|
|
|
cd ComfyUI_windows_portable_nightly_pytorch |
|
|
|
mkdir update |
|
cp ComfyUI/.ci/nightly/update_windows/* ./update/ |
|
cp ComfyUI/.ci/nightly/windows_base_files/* ./ |
|
|
|
cd .. |
|
|
|
& "C:\Program Files\7-Zip\7z.exe" a -t7z -m0=lzma -mx=8 -mfb=64 -md=32m -ms=on ComfyUI_windows_portable_nightly_pytorch.7z ComfyUI_windows_portable_nightly_pytorch |
|
mv ComfyUI_windows_portable_nightly_pytorch.7z ComfyUI/ComfyUI_windows_portable_nvidia_or_cpu_nightly_pytorch.7z
|
|
|