From 2a7e8e0dbc8163945a4bc01cf7be34c7a1795db7 Mon Sep 17 00:00:00 2001 From: Cavus Mustafa Date: Wed, 16 Aug 2023 11:06:55 -0700 Subject: [PATCH] Remote install PyTorch nightly from the repo --- torch-install.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/torch-install.bat b/torch-install.bat index b3e3f6a3..080ed2d4 100644 --- a/torch-install.bat +++ b/torch-install.bat @@ -1,7 +1,7 @@ @echo off -start /wait cmd /k "%cd%\venv\Scripts\activate && pip install %cd%\torch-2.1.0.dev20230713+cpu-cp310-cp310-win_amd64.whl && exit" +start /wait cmd /k "%cd%\venv\Scripts\activate && pip install torch==2.1.0.dev20230713+cpu -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html && exit" echo torch 2.1.0 dev installation completed.