The error can be ignored, your gunicorn
package installed successfully.
The error is thrown by a bit of code that'd only work on Python 3.3 or newer, but isn't used by older Python versions that Gunicorn supports.
See https://github.com/benoitc/gunicorn/issues/788:
The error is a syntax error happening during install. It is harmless.
During installation the setup.py
script tries to collect all files to be installed, and compiles them to .pyc
bytecache files. One file that is used only on Python 3.3 or up is included in this and the compilation for that one file fails.
The file in question adds support for the aiohttp http client/server package, which only works on Python 3.3 and up anyway. As such you can ignore this error entirely.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…