I m new to python.I installed python 3.4 and tried to run the commamd "pip install gevent" but it shows the error "TypeError: unorderable types: NoneType() >= str()".How to resolve this.
thanks in advance
I think that's because gevent
only supports Python 2.5 and greater:
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Programming Language :: Python :: 2.5
Programming Language :: Python :: 2.6
Programming Language :: Python :: 2.7
Solution: you have to install the Python 2.x version for Windows so that you can use gevent
as desired.