Description
I just installed pysipp for the first time on windows 10 (Python2.7) using:
pip install git+git://github.com/SIPp/pysipp.git
And after it installed, I tried your example script and got an error. Basically opening a python prompt and typing "import pysipp" generates the following error:
C:\pyfiles>python
Python 2.7.11 (v2.7.11:6d1b6a68f775, Dec 5 2015, 20:32:19) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
import pysipp
Traceback (most recent call last):
File "", line 1, in
File "C:\Python27\lib\site-packages\pysipp_init_.py", line 23, in
from . import launch, report, plugin, netplug, agent
File "C:\Python27\lib\site-packages\pysipp\launch.py", line 24, in
class PopenRunner(object):
File "C:\Python27\lib\site-packages\pysipp\launch.py", line 35, in PopenRunner
poller=select.epoll,
AttributeError: 'module' object has no attribute 'epoll'
Any ideas how to fix this?
Thanks!