安装Tensorlayer报错“Cannot uninstall 'xxx'"的解决方案

在安装一些python的库的时候,经常会碰到这样的错误,例如在使用指令pip insall tensorlayer时,会出现如下的报错:
Cannot uninstall 'scikit-learn'. 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.
一般这种情况下,出错的东西其实是你已经安装过了的,然后你会发现你想卸载也卸载不掉。如果实在找不出别的方法来处理的话,可以试着忽略这个错误。所以可以这样处理:

pip install --ignore-installed scikit-learn

等它完成之后,再pip insall tensorlayer会发现顺利通过。其他的库要是遇到类似的错误,也可以这样解决。

你可能感兴趣的:(Python,杂症小治)