linux安装torch1.7
时间: 2023-09-18 16:14:25 浏览: 87
torch1.7.zip
4星 · 用户满意度95%
可以通过以下步骤安装Torch 1.7:
1. 安装依赖项:
```
sudo apt-get update
sudo apt-get install -y build-essential cmake git libgtk2.0-dev pkg-config libavcodec-dev libavformat-dev libswscale-dev
```
2. 安装CUDA和cuDNN,如果您的系统支持的话。
3. 克隆Torch仓库并切换到1.7版本:
```
git clone https://github.com/torch/distro.git ~/torch --recursive
cd ~/torch
git checkout tags/v1.7.0
```
4. 运行安装脚本:
```
./install.sh
```
5. 安装完成后,运行以下命令验证:
```
th -e "print('hello world')"
```
希望这可以帮助您安装Torch 1.7!
阅读全文