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:
Following works for me:
conda install -c conda-forge selenium
Please check the Selenium page in Anaconda website for details.
Solution 3:
Try:
conda install -c metaperl selenium=2.40.0
Post a Comment for "Python: Installed Selenium Package Not Detected"