安装Cython遇到循环依赖

时间:2015-11-11 02:48:39

标签: python install cython

我正在为我的python安装cython。

我解压缩了tar.gz并执行了build-install例程。

然后,setup.py告诉我:

Traceback (most recent call last):
  File "setup.py", line 238, in <module>
    compile_cython_modules(cython_profile, cython_compile_more, cython_with_refnanny)
  File "setup.py", line 170, in compile_cython_modules
    from Cython.Distutils import build_ext
ImportError: No module named Cython.Distutils

所以这意味着,我需要cython来安装cython吗?

还是我错过了一些重要的事情?

1 个答案:

答案 0 :(得分:0)

原因在于'rz'命令,该命令没有提交完整的传输,但没有给出任何错误。

我解压缩的包是其他人上传的破坏包。我下载了另一个,最后做对了。

建议:使用以下命令首先检查包的完整性。

>md5sum sth.tar.gz                show checksum
>du -h st.tar.gz                  show human-readable file size

感谢Kevin Guan的建议和帮助。