Upload lora-scripts/install.ps1 with huggingface_hub
Browse files- lora-scripts/install.ps1 +4 -4
lora-scripts/install.ps1
CHANGED
|
@@ -7,13 +7,13 @@ if (!(Test-Path -Path "venv")) {
|
|
| 7 |
.\venv\Scripts\activate
|
| 8 |
|
| 9 |
Write-Output "Installing deps..."
|
| 10 |
-
Set-Location .\
|
| 11 |
-
pip install torch==2.
|
| 12 |
-
pip install -U -I --no-deps xformers==0.0.
|
| 13 |
pip install --upgrade -r requirements.txt
|
| 14 |
|
| 15 |
Set-Location ..
|
| 16 |
pip install --upgrade -r requirements.txt
|
| 17 |
|
| 18 |
Write-Output "Install completed"
|
| 19 |
-
Read-Host | Out-Null ;
|
|
|
|
| 7 |
.\venv\Scripts\activate
|
| 8 |
|
| 9 |
Write-Output "Installing deps..."
|
| 10 |
+
Set-Location .\scripts
|
| 11 |
+
pip install torch==2.4.1 torchvision==0.19.1 --extra-index-url https://download.pytorch.org/whl/cu124
|
| 12 |
+
pip install -U -I --no-deps xformers==0.0.28.post1
|
| 13 |
pip install --upgrade -r requirements.txt
|
| 14 |
|
| 15 |
Set-Location ..
|
| 16 |
pip install --upgrade -r requirements.txt
|
| 17 |
|
| 18 |
Write-Output "Install completed"
|
| 19 |
+
Read-Host | Out-Null ;
|