Install pytorch in Windows10

Is there have any guide to install pytorch in windows 10?thx dude

You can install the latest version of pytorch on windows from http://pytorch.org/.

Preferably install it via anaconda (Python 3.6).

PyTorch was the only framework (and I tried with Theano and TensorFlow as well) that I was able to use right with GPU. Here’s tutorial that worked for me (Win10): https://github.com/peterjc123/pytorch-scripts

Does the pip installer install CUDA Toolkit in Windows or should the user download CUDA from nVidia and install them manually?

pip install http://download.pytorch.org/whl/cu90/torch-0.4.1-cp36-cp36m-win_amd64.whl 
pip install torchvision

This will do the job

It seems it will do the job only if 2 things happens:

  1. The user installed the latest nVidia Driver.
  2. The user installed system wide CUDA Toolkit from nVidia.

I wish it wasn’t like that and the pip was self sustained with all the CUDA libraries needed supplied in it.