已解决:
安装oss2 报错:
- Installing collected packages: chardet, urllib3, requests, crcmod, oss2
- Found existing installation: chardet 2.0.1
- Cannot uninstall 'chardet'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.
复制代码
主要是chardet冲突问题
发现 pip uninstall chardet不能卸载或更新
于是使用 yum remove python-chardet 发现卸载了
采用 pip install chardet重新安装 或者 pip install oss2 (会自动安装)
|