0

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

Rabbid76
  • 202,892
  • 27
  • 131
  • 174
juba1029
  • 47
  • 4

1 Answers1

0

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.

Akash Kumar
  • 540
  • 2
  • 4
  • 15