今天在使用docker-compose时报错了
报错提示
/usr/lib/python2.7/site-packages/requests/__init__.py:80: RequestsDependencyWarning: urllib3 (1.21.1) or chardet (2.2.1) doesn't match a supported version!
RequestsDependencyWarning)
原因:
python库中urllib3 (1.21.1) or chardet (2.2.1) 的版本不兼容
解决方法:
pip uninstall urllib3
pip uninstall chardet
pip install requests
本文介绍了一种在使用Docker Compose过程中遇到的错误及其解决方案。错误原因是Python库中urllib3和chardet版本不兼容。解决方法包括卸载旧版本库并安装新的requests库。
1279

被折叠的 条评论
为什么被折叠?



