ImportError: No module named Cython.Distutils

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

    Running the following commands resolved the issue for me in ubuntu 14.04:

    sudo apt-get install python-dev    
    sudo apt-get install libusb-1.0-0-dev
    sudo apt-get install libsystemd-daemon-dev
    sudo pip install cython
    

    This link helped me: https://github.com/trezor/python-trezor/issues/40

提交回复
热议问题