我是靠谱客的博主 含蓄冷风,最近开发中收集的这篇文章主要介绍Debian9.8 安装 pytorch,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

Debian9.8 安装 pytorch (不安装cuda):
apt install -y git python3-dev
git clone --recursive https://github.com/pytorch/pytorch

export NO_CUDA=1

export USE_NUMPY=1

export USE_FFMPEG=1

export USE_OPENCV=1

export USE_REDIS=1
cd pytorch

pip install opencv-python numpy scipy tensorflow scikit-learn matplotlib redis ffmpeg

pip install pyyaml

pip install -r requirements.txt
python3 setup.py install

d2314286be6b6c0a067f28bab703f34702b.jpg

pip install torchvision

 

或者直接按照pytorch官网上https://pytorch.org/选择你要安装的,如:

pip install https://download.pytorch.org/whl/cpu/torch-1.0.1-cp35-cp35m-win_amd64.whl

 

用命令查看pytorch适合安装成功:

pip list | grep torch

d01771e3f48b7b2819cb0a63698506fa0e9.jpg

 

简单例子:

import torch

x = torch.empty(5, 3)
print(x)
 

输出:

7469b1fec1e78ad503683160367e7fa64f1.jpg

哈哈,以后就可以用pytorch开发了

转载于:https://my.oschina.net/michaelshu/blog/3021075

最后

以上就是含蓄冷风为你收集整理的Debian9.8 安装 pytorch的全部内容,希望文章能够帮你解决Debian9.8 安装 pytorch所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(43)

评论列表共有 0 条评论

立即
投稿
返回
顶部