SerpentAI: Failed building wheel for Cython

前端 未结 1 1374
刺人心
刺人心 2021-01-21 21:35

The log left in the Anaconda Prompt is so long, I physically can\'t copy & paste it all. At the moment is that I am currently attempting to follow Serpent.AI\'s own Windows

1条回答
  •  暖寄归人
    2021-01-21 22:12

    Please note SerpentAI declared End of life

    This a problem with Cython. The problem is that Cython 0.26 is incompatible with Python 3.7 because Cython named a variable await and the name became a reserved keyword in Python 3.7.

    I can think of a few solutions for the problem First, downgrade Python: use Python 3.5 or 3.6.

    If you really need Python 3.7 you can clone SerpentAI sources, fix Cython version in setup.py and install from the modified sources with pip install .

    0 讨论(0)
提交回复
热议问题