pyb00st
                                
                                 pyb00st copied to clipboard
                                
                                    pyb00st copied to clipboard
                            
                            
                            
                        Win10 No module named 'pyb00st' (kind of solved)
I have installed everything according to the instructions and got following output:
      import pyb00st.movehub
ModuleNotFoundError: No module named 'pyb00st'
After a bit of resarch I found out that python would recognise it when just using: import movehub
(import MoveHub wouldn't work either)
I just wanted to share my "solved" issue with you!
Instructions in Ubuntu 18.04 or linux
I set the PYTHON path in .bashrc file as below export PYTHONPATH="_(replace it with the home folder)_pyb00st/pyb00st-master/pyb00st"
To run an example file like test_connection.py
Change these 2 lines
from
from pyb00st.movehub import MoveHub from pyb00st.constants import *
to
from movehub import MoveHub from constants import *