ImportError: No module named Cython.Distutils

前端 未结 12 736
广开言路
广开言路 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:18

    I had dependency from third party library on Cython, didn't manage to build the project on Travis due to the ImportError. In case someone needs it - before installing requirements.txt run this command:

    pip install Cython --install-option="--no-cython-compile"

    Installing GCC also might help.

提交回复
热议问题