Skip to content Skip to sidebar Skip to footer

Python: Installed Selenium Package Not Detected

I am using the Anaconda python distribution and would like to use the selenium package. Unfortunately the distribution does not have selenium included in it so I installed it using

Solution 1:

Following the advice of a comment in this question I installed Selenium using the pip installed with the distribution.

~/anaconda/bin/pip install -U selenium

I did not know about this before but it seems to have worked.

Solution 2:

Solution 3:

Try:

conda install -c metaperl selenium=2.40.0

Post a Comment for "Python: Installed Selenium Package Not Detected"