使用pip安装Python的依赖库pandas的时候报错,错误提示类似如下所示:
Cannot uninstall 'numpy'. 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.
简单来说就是:安装pandas的时候,会卸载掉你原来的numpy,再重新安装一遍numpy(不清楚为啥,可能是因为自己带的numpy版本更加契合pandas),然后咱们的电脑是已经装过了numpy或者自带了numpy,pandas表示你这个numpy老子不认,我要帮你删了,但是因为你的numpy是安装在/system路径下的,然后它自动帮你删除又失败了,所以你要先去删掉自己的numpy。怎么找到自己的numpy呢??
1、终端打开python,输入import numpy
2、然后输入import inspect
3、然后输入inspect.getfile(numpy)
你就可以知道自己的numpy在哪里了,去删了就好,记得要删干净!!!如果电脑是macOS,就算用sudo也删不了,因为mac有一个rootless保护机制。
如何关闭mac的rootless保护机制呢?????
1、重启电脑,还在开机启动的时候按住 Command-R 进入恢复分区.
2、在实用工具栏找到,终端启动运行. 输入: csrutil disable ,接着输入 reboot 重启电脑
建议在改完后后,还是改成enable。
整明白了这个之后,以后再遇到这个问题,就照葫芦画瓢,它删不掉,咱们就自己删,记得需要删除干净!
emmm ...
屡试不爽,真香!