ImportError: Please run "pip install future tensorboard" to install the dependencies to use torch.utils.tensorboard (applicable to PyTorch 1.1 or higher) ERROR:torch.distributed.elastic.multiprocessing.api:failed (exitcode: 1) local_rank: 0 (pid: 14602) of binary: /usr/local/envs/cv/bin/python
时间: 2024-01-31 15:04:49 浏览: 352
Python-PyTorch的tensorboard插件
这个错误提示是缺少依赖包,需要安装 "future" 和 "tensorboard"。你可以通过运行以下命令进行安装:
```
pip install future tensorboard
```
此外,根据错误提示,你正在使用 PyTorch 1.1 或更高版本,因此需要安装这些依赖项才能使用 torch.utils.tensorboard。希望这可以帮助你解决问题。
阅读全文