• RobotHub
  • pip install question with robothub

May be a silly question but. I'm trying to use other python libraries in my robot app. I've "pip installed" my custom lib but when I goto run the app it says "ModuleNotFoundError: No Module Named 'MyLibrary'. Is there a different way to install normal python packages?

Thanks.

Duane

Hi @Duane
Perhaps you are running in a different environment? Do which python3 or which pip differ from python3 -m pip?

Thanks,
Jaka

Sweet that worked fine. Oddly I had reboot to after python3 -m pip install or it kept throwing errors that the library was not seen.

Thanks!