1.已经安装了pip install tensorboard 出现报错
在使用torch.utils.tensorboard时,出现错误:
出错语句from torch.utils.tensorboard import SummaryWriter
AttributeError: module 'distutils' has no attribute 'version'
2.问题原因 当前tensorboard的版本和你安装的pytorch版本不匹配,tensorboard版本太 高,pytorch太低。
3解决办法,
一般来说具体哪个地方attribute 不匹配我们就降低那个部分的版本。
此处解决方法为
pip uninstall setuptoolspip install setuptools==59.5.0 //需要比你之前的低
来源地址:https://blog.csdn.net/qq_39454370/article/details/125844983