Mitesh Puthran
Mitesh Puthran

Reputation: 127

Installing Pytorch on Windows 10

I am trying to install Pytorch on Windows 10 anaconda environment with Python 3.6 using the following command:

conda install -c peterjc123 pytorch 

But it gives the following error:

UnsatisfiableError: The following specifications were found to be in conflict: - curl -> krb5=1.14 -> *[track_features=vc14] - curl -> libssh2=1.8 -> vc==14 - pytorch Use "conda info " to see the dependencies for each package.

The same goes for the new updated December code

conda install -c peterjc123 pytorch cuda80

Is there a way which will help me install Pytorch on Windows ?

Upvotes: 1

Views: 4505

Answers (3)

Hoat23
Hoat23

Reputation: 11

I solved with this command

pip3 install http://download.pytorch.org/whl/cu92/torch-0.4.1-cp36-cp36m-win_amd64.whl

Upvotes: 0

Mitesh Puthran
Mitesh Puthran

Reputation: 127

I solved the issue by side loading the pytorch's tar.bz2 file

Upvotes: 4

ChameleonX
ChameleonX

Reputation: 87

try to first install with with pip3 (Install pip3 if you don't have it), then do the following command:

pip3 install pytorch

Then repeat the process on conda, also try conda without peterjc123.

Upvotes: 0

Related Questions