Pytorch 1.2 Windows

Anyone know where i can get the PyTorch v1.2?
Conda has 1.1 for Windows but 1.2 for Mac, Linux

3 Likes

Hi,

PyTorch 1.2 is available through conda

1 Like

My bad, you are right. It is not available on pip too.

@fmassa, @ptrblck Could you please help us?

1 Like

You’re sure it’s not pytorch1.1

Yes, I have received an email last night about v1.2 and as you can see in the first image, all numbers are pointing to 1.2. And there is separate branch on GitHub for v1.2. They did not mention particular platform for this release so it should be available for all.

1 Like

It seems they are working on it as you know!

1 Like

Pytorch just got updated for windows on conda.
image

It is still unavailable on pip.

Conda

conda install pytorch cpuonly -c pytorch
conda install pytorch cudatoolkit=9.2 -c pytorch -c numba/label/dev
conda install pytorch cudatoolkit=10.0 -c pytorch

Wheels
CPU
https://download.pytorch.org/whl/cpu/torch-1.2.0%2Bcpu-cp35-cp35m-win_amd64.whl
https://download.pytorch.org/whl/cpu/torch-1.2.0%2Bcpu-cp36-cp36m-win_amd64.whl
https://download.pytorch.org/whl/cpu/torch-1.2.0%2Bcpu-cp37-cp37m-win_amd64.whl

CUDA 9.2
https://download.pytorch.org/whl/cu92/torch-1.2.0%2Bcu92-cp35-cp35m-win_amd64.whl
https://download.pytorch.org/whl/cu92/torch-1.2.0%2Bcu92-cp36-cp36m-win_amd64.whl
https://download.pytorch.org/whl/cu92/torch-1.2.0%2Bcu92-cp37-cp37m-win_amd64.whl

CUDA 10.0
https://download.pytorch.org/whl/cu100/torch-1.2.0-cp35-cp35m-win_amd64.whl
https://download.pytorch.org/whl/cu100/torch-1.2.0-cp36-cp36m-win_amd64.whl
https://download.pytorch.org/whl/cu100/torch-1.2.0-cp37-cp37m-win_amd64.whl

All the packages should be available for Windows.

2 Likes