OS: Ubuntu 18.04
pylsl version: 1.13.1
Python in Conda:
root@machine:~# python
Python 3.5.5 | packaged by conda-forge | (default, Jul 23 2018, 23:45:43)
[GCC 4.8.2 20140120 (Red Hat 4.8.2-15)] on linux
pip install -I pylsl==1.13.1
root@machine:~# python ReceiveData.py
looking for an EEG stream...
Error during resolve_byprop: lslboost:: recursive_mutex constructor failed in pthread::cond_init: Invalid argument
[]
Traceback (most recent call last):
File "ReceiveData.py", line 16, in <module>
inlet = StreamInlet(streams[0])
IndexError: list index out of range
root@engineering:~#
FIX:
Remove new version, install 1.12.2:
pip uninstall pylsl
pip install -I pylsl==1.12.2
Then everything is fine, the data appearing in console.
OS: Ubuntu 18.04
pylsl version: 1.13.1
Python in Conda:
pip install -I pylsl==1.13.1
FIX:
Remove new version, install 1.12.2:
Then everything is fine, the data appearing in console.