Home > other >  no module found error in python even after installing module
no module found error in python even after installing module

Time:10-10

I installed selenium module and imported in python but when I run program it shows an error that no module found. I tried

pip install selenium

CodePudding user response:

Try installing by using if you are using python3.

pip3 install selenium

CodePudding user response:

Was the module installed when you tried that command? If it did, you're facing an issue of installing the module in one env and trying to run it using another env. Select the correct interpreter to run the project.

  • Related