写点什么

树莓派 4B 搭建 Pytorch 环境

发布于: 2021 年 04 月 14 日
树莓派4B搭建Pytorch环境

基础准备

  1. 64 位树莓派环境(我这里用的是官方镜像)

  2. 访问外网的梯子(如果没有,我会在评论区发送网盘链接,但是无法保证是最新版)

  3. Python3.7.x

需要的网站

  1. 官方镜像地址

https://downloads.raspberrypi.org/raspios_arm64/images/

  1. 科大镜像网站

http://mirrors.ustc.edu.cn/help/raspbian.html

  1. pytorch(ARM)

https://github.com/Qengineering/PyTorch-Raspberry-Pi-64-OS

配置国内源

sudo nano /etc/apt/sources.list
复制代码


deb https://mirrors.ustc.edu.cn/debian/ buster main contrib non-free# deb-src http://mirrors.ustc.edu.cn/debian buster main contrib non-freedeb https://mirrors.ustc.edu.cn/debian/ buster-updates main contrib non-free# deb-src http://mirrors.ustc.edu.cn/debian buster-updates main contrib non-freedeb https://mirrors.ustc.edu.cn/debian-security buster/updates main contrib non-free# deb-src http://mirrors.ustc.edu.cn/debian-security/ buster/updates main non-free contrib
复制代码



sudo apt-get updatesudo apt-get upgrade
复制代码

正式开始安装 Pytorch

1. 以防外一

在开始前,我们最好在确认一下自己的环境是不是 64 位的,还有 Python 的版本

uname -agcc -vpython3
复制代码

这些命令可以确认到我们需要的信息

2. 上传 whl 文件

将我们提前下载好的 whl 文件上传到树莓派中。我这里是通过 VNC 软件上传的,你也可以通过其他你熟悉的方式上传。

3. 开始安装

sudo apt-get install python3-pip libopenblas-dev libopenmpi-dev libomp-devsudo -H pip3 install --upgrade setuptoolssudo -H pip3 install Cythoncd Downloads/sudo -H pip3 install torch-1.8.0a0+37c1f4a-cp37-cp37m-linux_aarch64.whl
复制代码

等待数秒即可“开箱食用”。

其他

如果有任何异常,可以随时留言。如果能解决的我会找时间再次直播分享,本次操作的录屏稍后会发送在评论区。

如果对你有帮助,欢迎转发给你的朋友。我们下期再见!

发布于: 2021 年 04 月 14 日阅读数: 61
用户头像

一个日语专业的程序猿。 2017.09.10 加入

【坐标】无锡 【软件技能】Java,C#,Python 【爱好】炉石传说 【称号】InfoQ年度人气作者,Intel OpenVINO领航者联盟成员 【B站】https://space.bilibili.com/397260706/ 【个人站】www.it-worker.club

评论

发布
暂无评论
树莓派4B搭建Pytorch环境