0

I have tried to install selenium multiple times.

I typed in all these below.

python3 -m pip install selenium pip3 install selenium pip install selenium

etc

I can tell it has been installed by trying pip list and it's on the list but still it's not running and showing the error 'no module named 'selenium''

Any help?

1 Answers1

0

Can you try printing "pip3 freeze" in ubuntu to get list of packages installed?. Add them in Question. So, We can help.

and try this one

python3 -m pip install
python3 -m pip install --user virtualenv
python3 -m venv env
source env/bin/activate
pip install selenium
pip freeze #to check all installed packages
Hiren Namera
  • 390
  • 1
  • 10