python - How do I disable Cython? -
i'm trying install lxml in python, seems cython screwing installation (according install instructions).
i'm on centos operating system, , tried yum remove cython, apparently can't find package, though it's there when type whereis.
is there way temporarily disable cython? can't find information anywhere.
edit: tried following:
[root@tawfik devin]# rpm -qa |grep cython [root@tawfik devin]# whereis cython cython: /usr/local/bin/cython [root@tawfik devin]# rpm -e /usr/local/bin/cython error: package /usr/local/bin/cython not installed
use following command find package
rpm -qa |grep cython
then if found copy past package name in command remove it.
rpm -e <package_name>
Comments
Post a Comment