错误总结及解决错误方法

近期使用ubuntu自带python2运行别人的caffe模型出现问题总结:

1、plt.savefig问题

在对结果保存时,出现了第一次和第二次图片的重叠,把所有结果保存到了同一幅图像中去了。

解决办法:加上plt.close()

参考:https://blog.csdn.net/daixiangzi/article/details/82528927

2、AttributeError: 'NoneType'

fast_rcnn/test.py", line 33, in _get_image_blob
    im_orig = im.astype(np.float32, copy=True)
AttributeError: 'NoneType' object has no attribute 'astype'
我出现此错误是加载图片的路径有问题,没有读取到图片。

3、Check failed: error == cudaSuccess (10 vs. 0) invalid device ordinal

由于GPU数量不匹配造成的,caffe中设置GPU后不用再使用CUDA_VISIBLE_DEVICES

参考:https://blog.csdn.net/xunan003/article/details/78433383

4、安装jupyter后,使用时显示找不到命令(command not found)或者snap install jupyter 

主要是没有加载到bin文件

参考:https://blog.csdn.net/u011463794/article/details/83017138

5、安装python包时提示权限不够 Could not install packages due to an EnvironmentError: [Errno 13] 

主要是使用pip install 包 --user

参考:https://blog.csdn.net/qq_43192819/article/details/85225127

6、socket.gaierror: [Errno -2] Name or service not known

需要注意版本信息,如果notebook为5.6.0以下版本,c.NotebookApp.ip = '*',为以上版本,则设置为c.NotebookApp.ip = '0.0.0.0'

参考:https://blog.csdn.net/duanbiren123/article/details/83833148

7、查看每个GPU的使用进程

:sudo fuser -v /dev/nvidia*

你可能感兴趣的:(python)