MNC编译报错 pip 彻底卸载 cython 并重装指定版本

最近在学习图像分割著作MNC源码

在其lib文件夹下进行编译时报错提示Cython版本不对,需要重新卸载安装比0.20.1更高的版本。

于是使用pip卸载命令

通常在pip uninstall cython后会出现如下报错:

Cannot uninstall 'Cython'.It is a distutils installed project and thus we cannot accurately determine which files belong to it whcih would lead to only a partial uninstall.

因为使用pip没有将Cython删除干净

此时找到相关系统文件:

locate Cython-0.20.1-py2.7.egg.info

找到路径后删除该文件然后重新pip uninstall cython此时可删除干净

为了满足MNC的需求,可继续安装新版本的cython,据我测试多个版本发现cython > 0.20.2 均可以完成编译

本机安装pip install cython==0.25.1

随后编译通过

你可能感兴趣的:(Linux,pip,caffe,cython)