OBO
OBO

Reputation: 47

How Can I Install pytorch on Intel & python2.7?

I often saw how to install pytorch on intel & python3 but no python2...!

How can I install pytorch on intel & python2

Upvotes: 1

Views: 1184

Answers (1)

AthiraC - Intel
AthiraC - Intel

Reputation: 76

You can install PyTorch in two ways

Using pip and Using conda

PyTorch installation using pip

pip install torch==1.3.1+cpu torchvision==0.4.2+cpu -f https://download.pytorch.org/whl/torch_stable.html

PyTorch installation via conda

conda install pytorch torchvision cpuonly -c pytorch

Upvotes: 3

Related Questions