Home > Software design >  I am importing a module from home.module import contacts but its showing error no module named home
I am importing a module from home.module import contacts but its showing error no module named home

Time:04-09

enter image description here

So what can I do here cause I have tried everything but nothing happened please help

CodePudding user response:

Are you trying to install the "home" module from d0ugal ? If so, did you install it on your computer first, with pip install home in a console ?

Hope it helps !

CodePudding user response:

Try in you VS Code: Pip install home. After that you can import the module in your python file and use it.

  • Related