TensorBoard attempted to bind to port 6006, but it was already in use 解决方法
ERROR:tensorflow:TensorBoard attempted to bind to port 6006, but it was already in use
解决方法:
#终端下
lsof -i:6006
#查看PID
kill -9 PID号码
再次运行,完美解决
ERROR:tensorflow:TensorBoard attempted to bind to port 6006, but it was already in use
解决方法:
#终端下
lsof -i:6006
#查看PID
kill -9 PID号码
再次运行,完美解决
相关推荐