一些深度学习环境中的报错~~

1、简单一步解决 No module named ‘pycocotools’报错
加载COCO数据集时出现该错误,无需下载pycocotools_windows-2.0-cp37-cp37m-win_amd64.whl类似轮子文件。

pip install pycocotools-windows

2、python的pip下载不了东西Could not fetch URL https://pypi.org/simple/pip/: There was a problem confirming t
结果下载、更新不了,就是电脑连接不上。给命令加个数据源。
如果要下载包

pip install xxx -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

如果要更新命令

python -m pip install --upgrade pip -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

3、常用的数据源

http://mirrors.aliyun.com/pypi/simple/ 阿里云
https://pypi.mirrors.ustc.edu.cn/simple/ 中国科技大学
http://pypi.douban.com/simple/ 豆瓣
https://pypi.tuna.tsinghua.edu.cn/simple/ 清华大学
http://pypi.mirrors.ustc.edu.cn/simple/ 中国科学技术大学

4、成功解决TypeError: init() got an unexpected keyword argument ‘serialized_options’
类型错误:init()得到意外的关键字参数“serialized_options”
出现该问题,很有可能是终端上的 protoc 版本 与python库内的protobuf版本不一样。
解决方法:安装对应版本的库即可。执行命令

pip install -U protobuf

你可能感兴趣的:(深度学习,python)