Can't import pyinputplus module

411 Views Asked by At

When I try to import the module on Mu, I get the error: ModuleNotFoundError: No module named 'pyinputplus'

However, on command prompt it says its successfully installed. Im on windows 10 and using python 3.9. any help appreciated

1

There are 1 best solutions below

0
Akash Kumar On

First, you have to install that module in your computer. By using:

pip install pyinputplus

Then, you can import it by:

import pyinputplus as pyip

and then, you will get results like this.