Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我经常看到如何在 intel & python3 上安装 pytorch 但没有 python2 ......!
如何在英特尔和 python2 上安装 pytorch
您可以通过两种方式安装 PyTorch
使用pip和使用conda
pip
conda
使用 pip 安装 PyTorch
pip install torch==1.3.1+cpu torchvision==0.4.2+cpu -f https://download.pytorch.org/whl/torch_stable.html
PyTorch 安装通过conda
conda install pytorch torchvision cpuonly -c pytorch