Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
538 views
in Technique[技术] by (71.8m points)

python - Gevent support in Python3

I was trying to install and use Gevent in Python3.4 after successfully using it with Python2.7. However using Python 3 I am getting a error at import itself. Is it not supported still in python3?

Using gcc 4.9 and installed using pip3 install gevent.

import gevent
  File "/usr/local/lib/python3.4/dist-packages/gevent/__init__.py", line 41, in <module>
    from gevent.hub import get_hub, iwait, wait
  File "/usr/local/lib/python3.4/dist-packages/gevent/hub.py", line 289
    except Exception, ex:
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

except Exception, ex is Python 2 syntax, it should be except Exception as ex in Python 3. It looks like the Gevent package is indeed not properly prepared for Python 3.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...