Ubuntu22.04,彻底卸载pytorch
时间: 2023-06-30 10:23:15 浏览: 689
docker image:Ubuntu 22.04 Python 3.9 and pytorch=2.2.1+cu118
如果你是通过 pip 安装的 PyTorch,可以通过以下步骤来卸载:
1. 打开终端,输入以下命令,卸载 PyTorch 包:
```
pip uninstall torch
```
2. 如果你还安装了 torchvision 包,也需要卸载:
```
pip uninstall torchvision
```
3. 最后,如果你想彻底卸载 PyTorch,还需要删除其依赖的文件,可以通过以下命令来删除:
```
rm -rf ~/.cache/pip
rm -rf build/ dist/ *.egg-info/
```
如果你是通过源码安装的 PyTorch,则需要按照源码安装的步骤进行卸载。
阅读全文