180611 Anaconda一行命令安装Pytorch-0.4 Python=3.5

Windows下安装PyTorch0.4.0

# CPU Version
 pip install http://download.pytorch.org/whl/cpu/torch-0.4.0-cp35-cp35m-win_amd64.whl

这里写图片描述

# GPU Version
pip install http://download.pytorch.org/whl/cu80/torch-0.4.0-cp35-cp35m-win_amd64.whl

这里写图片描述

(tf1435) E:\DeepLearning\JupyterNoteBooks2\Keras-FCN-master>python
Python 3.5.3 |Continuum Analytics, Inc.| (default, May 15 2017, 10:43:23) [MSC v.1900 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import torch
>>> print(torch.__version__)
0.4.0
>>>

猜你喜欢

转载自blog.csdn.net/qq_33039859/article/details/80651794