pytorch安装命令「建议收藏」

pytorch安装命令「建议收藏」转自:https://blog.csdn.net/sunny_580/article/details/78958236pytorch安装命令OS :Linux, PackageManager :conda, Python :2.7, CUDA :7.5Runthiscommand: condainstallpytorchtorchvisioncuda75-c…

大家好,又见面了,我是你们的朋友全栈君。

转自:https://blog.csdn.net/sunny_580/article/details/78958236

pytorch安装命令

OS :Linux, 

Package Manager :conda, 

Python :2.7, 

CUDA :7.5

Run this command: conda install pytorch torchvision cuda75 -c pytorch

CUDA :8

 

Run this command: conda install pytorch torchvision -c pytorch

 

 

CUDA :9

Run this command: conda install pytorch torchvision cuda90 -c pytorch

CUDA :NONE

Run this command: conda install pytorch torchvision -c pytorch

 

 

 

OS :Linux, 

Package Manager :conda, 

Python :3.5, 

CUDA :7.5

Run this command: conda install pytorch torchvision cuda75 -c pytorch

 

 

CUDA :8

Run this command: conda install pytorch torchvision -c pytorch

 

 

CUDA :9

Run this command: conda install pytorch torchvision cuda90 -c pytorch

 

CUDA :NONE

Run this command: conda install pytorch torchvision -c pytorch

 

 

 

 

 

 

 

OS :Linux, 

Package Manager :conda, 

Python :3.6, 

CUDA :7.5

Run this command: conda install pytorch torchvision cuda75 -c pytorch

 

 

CUDA :8

Run this command: conda install pytorch torchvision -c pytorch

 

 

CUDA :9

Run this command: conda install pytorch torchvision cuda90 -c pytorch

 

CUDA :NONE

Run this command: conda install pytorch torchvision -c pytorch

 

 

 

OS :Linux, 

Package Manager :pip, 

Python :2.7, 

CUDA :7.5

Run this command:pip install http://download.pytorch.org/whl/cu75/torch-0.3.0.post4-cp27-cp27mu-linux_x86_64.whl 
pip install torchvision 

# if the above command does not work, then you have python 2.7 UCS2, use this command 
pip install http://download.pytorch.org/whl/cu75/torch-0.3.0.post4-cp27-cp27m-linux_x86_64.whl

 

 

CUDA :8

Run this command: pip install http://download.pytorch.org/whl/cu80/torch-0.3.0.post4-cp27-cp27mu-linux_x86_64.whl 
 pip install torchvision 

# if the above command does not work, then you have python 2.7 UCS2, use this command 
pip install http://download.pytorch.org/whl/cu80/torch-0.3.0.post4-cp27-cp27m-linux_x86_64.whl

 

 

CUDA :9

Run this command: pip install http://download.pytorch.org/whl/cu90/torch-0.3.0.post4-cp27-cp27mu-linux_x86_64.whl 
  pip install torchvision 

# if the above command does not work, then you have python 2.7 UCS2, use this command 
pip install http://download.pytorch.org/whl/cu90/torch-0.3.0.post4-cp27-cp27m-linux_x86_64.whl

 

CUDA :NONE

Run this command: pip install http://download.pytorch.org/whl/cu80/torch-0.3.0.post4-cp27-cp27mu-linux_x86_64.whl 

 

  pip install torchvision 

# if the above command does not work, then you have python 2.7 UCS2, use this command 
pip install http://download.pytorch.org/whl/cu80/torch-0.3.0.post4-cp27-cp27m-linux_x86_64.whl

 

 

 

 

 

OS :Linux, 

Package Manager :pip, 

Python :3.5, 

CUDA :7.5

Run this command: pip3 install http://download.pytorch.org/whl/cu75/torch-0.3.0.post4-cp35-cp35m-linux_x86_64.whl 
 pip3 install torchvision

 

 

CUDA :8

Run this command: pip3 install http://download.pytorch.org/whl/cu80/torch-0.3.0.post4-cp35-cp35m-linux_x86_64.whl 

 pip3 install torchvision

 

 

CUDA :9

Run this command: pip3 install http://download.pytorch.org/whl/cu90/torch-0.3.0.post4-cp35-cp35m-linux_x86_64.whl 
  pip3 install torchvision

 

CUDA :NONE

Run this command: pip3 install http://download.pytorch.org/whl/cu80/torch-0.3.0.post4-cp35-cp35m-linux_x86_64.whl 

 pip3 install torchvision

 

 

 

OS :Linux, 

Package Manager :pip, 

Python :3.6, 

CUDA :7.5

Run this command: pip3 install http://download.pytorch.org/whl/cu75/torch-0.3.0.post4-cp36-cp36m-linux_x86_64.whl 
 pip3 install torchvision

 

 

CUDA :8

Run this command: pip3 install http://download.pytorch.org/whl/cu80/torch-0.3.0.post4-cp36-cp36m-linux_x86_64.whl 

      pip3 install torchvision

 

 

CUDA :9

Run this command: pip3 install http://download.pytorch.org/whl/cu90/torch-0.3.0.post4-cp36-cp36m-linux_x86_64.whl 
  pip3 install torchvision

 

CUDA :NONE

Run this command: pip3 install http://download.pytorch.org/whl/cu80/torch-0.3.0.post4-cp36-cp36m-linux_x86_64.whl 

 pip3 install torchvision

 

 

 

 

 

OS :Linux, 

Package Manager :Source, 

Python :2.7, 3.5, 3.6

CUDA :7.5, 8, 9, None

Run this command: # Follow instructions at this URL: 
https://github.com/pytorch/pytorch#from-source

 

 

 

OS :OSX, 

 

Package Manager :Source, 

Python :2.7, 3.5, 3.6

CUDA :7.5, 8, 9, None

 

Run this command:  # Follow instructions at this URL: 

 

  https://github.com/pytorch/pytorch#from-source

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/152777.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • 损失函数与代价函数区别

    损失函数与代价函数区别各种损失函数的优缺点详解损失函数或者代价函数的目的是:衡量模型的预测能力的好坏。损失函数(Lossfunction):是定义在单个训练样本上的,也就是就算一个样本的误差,比如我们想要分类,就是预测的类别和实际类别的区别,是一个样本的哦,用L表示。代价函数(Costfunction):是定义在整个训练集上面的,也就是所有样本的误差的总和的平均,也就是损失函数的总和的平均,有没有这个平…

  • iapp邮箱钓鱼源码制作_充值钓鱼网站源码

    iapp邮箱钓鱼源码制作_充值钓鱼网站源码文件名称:php下载收藏√[54321]开发工具:PHP文件大小:1715KB上传时间:2015-11-13下载次数:0提供者:fgg详细说明:最新qq钓鱼空间php源码需要修改数据库连接-Needtomodifytheconnection文件列表(点击判断是否您需要的文件,如果是垃圾请在下面评价投诉):最新空间php源码\test\1.s…

  • linux 主机支持远程唤醒_LINUX 远程开机

    linux 主机支持远程唤醒_LINUX 远程开机linux远程开机1、主机bios设置支持lan启动2、查看机器是否支持服务器远程唤醒ethtooleth0Settingsforeth0:Supportedports:[TPMII]Supportedlinkmodes:10baseT/Half10baseT/Full100baseT/Half100baseT/FullSupportsauto-negotiat…

  • Douban的jquery使用技巧

    Douban的jquery使用技巧

  • 提升网页打开速度的实用方法

    提升网页打开速度的实用方法

    2021年10月16日
  • 数据挖掘技术、方法及应用

    数据挖掘技术、方法及应用目录(?)[+]一幅凝固的油画 Keywords:datamining,Knowledgediscoveryindatabases,DM,KDD,CRISP-DM,Internet概念基于Internet的全球信息系统的发展使我们拥有了前所未有的丰富数据。大量信息在给人们带来方便的同时也带来了一大堆问题:第一是信息过量,难以消化;第二是信息真假难以辨识;第三

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号