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)


相关推荐

  • 什么是纠删码_脑疝的常见类型

    什么是纠删码_脑疝的常见类型你能给纠删码一个好的定义吗? EthanMiller:纠删码是在丢失部分数据的情况下根据剩余数据将丢失的数据重建的一组算法。举个例子,如果我想保护六份数据,我会使用一种纠删码算法来产生两份额外的数据,这样总共就会有八份数据。这八份数据中的任意六份数据都能恢复另外两份数据。纠删码的要点是你可以选择对数据做任意数量的分片。我知道一些纠删码可以将数据至多分成200片或者奇数片,你也可以选择校验数

    2022年10月25日
  • SVN—SVN服务器搭建和使用[通俗易懂]

    本系列会总结一些svn和git的安装和使用,以及最后svn的项目如何迁移到git上,整个系列会持续输出。 要学习svn,那么首先开始搭建svn服务器和客户端。 下面要讲的有:svn下载和安装svn配置文件svn服务器的使用1:svn服务器和客户端安装包下载和安装 Subversion是优秀的版本控制工具, 现在Subversion已经迁移到apache网站上了,下载地址: http://

  • win ce 编译运行自定义控件提示:Result code: 0x80040154 错误解决

    win ce 编译运行自定义控件提示:Result code: 0x80040154 错误解决

  • 继电器驱动电路(各种单片机、CD4013触发器驱动电路图)

    继电器驱动电路(各种单片机、CD4013触发器驱动电路图)继电器工作原理详解(附3种驱动电路图)2019-09-1216:10继电器继电器是一种电子控制器件,它具有控制系统(又称输入回路)和被控制系统(又称输出回路),通常应用于自动控制电路中,它实际上是用较小的电流去控制较大电流的一种“自动开关”。故在电路中起着自动调节、安全保护、转换电路等作用。继电器的继电特性继电器的输入信号x从零连续增加达到衔铁开始吸合时的动作值xx,继电器的输出信号立刻从y=0跳跃y=ym,即常开触点从断到通。一旦触点闭合,输入量x继续增大,输出信号.

  • 字典树的数据结构_数据结构快速排序

    字典树的数据结构_数据结构快速排序本文主要包括以下内容:Trie字典树的基本概念Trie字典树的基本操作插入查找前缀查询删除基于链表的Trie字典树Set性能对比LeetCode相关线段树的问题LeetCode第208号问题LeetCode第211号问题LeetCode第677号问题Trie字典树的基本概念上一篇我们介绍了线段树(SegmentTree),本文主要介绍Trie字典树…

  • 计算机视觉中的曲率尺度空间技术[通俗易懂]

    计算机视觉中的曲率尺度空间技术[通俗易懂]看到一篇文章《计算机视觉中的曲率尺度空间技术:基本概念与理论进展》——钟宝江,对于尺度空间的理解很有帮助,遂贴部分内容在此,如果涉及侵权,请告知,我会马上删除。1引言尺度是计算机视觉与图象处理领域的一个重要概念。国际上有关尺度空间技术的研究大致分为如下两个分支:线性尺度空间技术

    2022年10月14日

发表回复

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

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