Home > Software design >  Why does Spyder say "ModuleNotFoundError: No module named 'selenium'"?
Why does Spyder say "ModuleNotFoundError: No module named 'selenium'"?

Time:04-23

I am trying to run some selenium code in Spyder but I get the following error:

ModuleNotFoundError: No module named 'selenium'

Any ideas as to why this may be?.

CodePudding user response:

  1. Install Anaconda.

  2. Open 'Anaconda Prompt' as administrator.

  3. Type the following:

    conda install -c conda-forge selenium

  • Related