Modulenotfounderror: no module named webdriver_manager

In this article, we will discuss the solutions to the error Modulenotfounderror: no module named webdriver_manager.

The error no module named webdriver_manager occurs if the system cannot find the installation of webdriver_manager

Otherwise, it is not compatible the python version.

How to solve the no module named webdriver_manager?

To install webdriver-manager package, type the following command below:

pip install webdriver-manager

If the error will continue, type the following command below:

pip install webdriver_manager

The ModuleNotFoundError: No module named “webdriver-manager” error will be resolved after installing the webdriver-manager Python library.

Common Error Occurs:

  • There is no webdriver_manager module installed in your system.
  • Installing the module in a various Python version than the one you’re currently using.
  • Installing the module globally and it is not installed in your virtual environment.
  • Executing the IDE which is not the correct version of Python.

Check your Python version to make sure you are installing the package using the correct version of Python if the error will continue.

To find out that you already install the webdriver-manager you are running, type this command:

pip show webdriver_manager

The command’s output will look like this after you type it:

Conclusion

To conclude, we already provide the solutions of the Modulenotfounderror: no module named webdriver_manager in the example above.

Leave a Comment