ImportError: No module named Cython.Distutils

前端 未结 12 741
广开言路
广开言路 2020-12-13 13:01

I\'m having a strange problem while trying to install the Python library zenlib, using its setup.py file. When I run the setup.py file

12条回答
  •  感动是毒
    2020-12-13 13:26

    Just install Cython from http://cython.org/#download and install it using this command

    sudo python setup.py install
    

    Then run the command

    sudo python -c 'import Cython.Distutils'
    

    and it will be installed and the error message will disappear.

提交回复
热议问题