unable to insatll selenium using pip install selenium

0

When I tried installing selenium on Python 3.7, I'm getting below error:

C:\Python 3.7\Scripts>pip install selenium
Traceback (most recent call last):
  File "c:\users\kramachandra\appdata\local\programs\python\python37\lib\runpy.py", line 193, in _run_module_as_main
    "__main__", mod_spec)
  File "c:\users\kramachandra\appdata\local\programs\python\python37\lib\runpy.py", line 85, in _run_code
    exec(code, run_globals)
  File "C:\Python 3.7\Scripts\pip.exe\__main__.py", line 9, in <module>
TypeError: 'module' object is not callable

How can I fix it?

user1108981

Posted 2019-11-04T09:11:52.287

Reputation: 1

Does this help?

– Worthwelle – 2019-11-06T15:23:54.737

As indicated in the other comment to this question (so far), try python -m pip install selenium. – Anaksunaman – 2019-11-07T11:17:59.437

No answers