—— 本篇文章 by 平心静气
安装jqdata时遇到第三方库无法升级的解决方法
在已经安装过许多第三方库的python环境中,使用pip install jqdatasdk安装jqdata时,需要升级第三方库,但是已经安装的第三方库无法卸载,报错类似如下
Cannot uninstall ‘SQLAlchemy’. 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.
大家碰到的第三方库可能不同,但是解决方法可以类似,这种情况可能之前的第三方库是通过离线文件方式安装的造成的。
其解决方法如下:
请找到python下面的路径
找到如下文件
每个人遇到的文件可能不一样,可以根据自己的错误提示找到egg-info文件,将该文件删除或者改名,然后再次执行pip install jqdata,就能够重新安装了