You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the install requires snowboy to be compiled for the current system and python version separately to the installation of opsdroid audio.
Snowboy's python wrapper isn't a python module (doesn't have an __init__.py) so once you build the project you also have to touch __init__.py in the swig/Python directory. You must then rename swig/Python to snowboydetect and put it somewhere on the python path.
Also if you're building the project for python3 you need to update the Makefile in swig/Python to call python3-config instead of python-config.
All of this is currently captured in scripts/install_snowboy.sh to be used during travis builds but this also needs to be implemented in a robust way for users installing opsdroid-audio.
The text was updated successfully, but these errors were encountered:
Currently the install requires snowboy to be compiled for the current system and python version separately to the installation of opsdroid audio.
Snowboy's python wrapper isn't a python module (doesn't have an
__init__.py
) so once you build the project you also have to touch__init__.py
in theswig/Python
directory. You must then renameswig/Python
tosnowboydetect
and put it somewhere on the python path.Also if you're building the project for python3 you need to update the
Makefile
inswig/Python
to callpython3-config
instead ofpython-config
.All of this is currently captured in scripts/install_snowboy.sh to be used during travis builds but this also needs to be implemented in a robust way for users installing opsdroid-audio.
The text was updated successfully, but these errors were encountered: