pyb00st icon indicating copy to clipboard operation
pyb00st copied to clipboard

Win10 No module named 'pyb00st' (kind of solved)

Open elmiba opened this issue 6 years ago • 1 comments

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!

elmiba avatar Dec 08 '18 14:12 elmiba

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 *

sachinkmohan avatar Aug 29 '20 12:08 sachinkmohan