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 the recommended:
pip install -U selenium
the distribution FAQ say this should work fine but when I try to use it I get python telling me it does not know anything about this package.
i.e.
>>> import selenium
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named selenium
I checked and the /usr/local/lib/python2.7/dist-packages
directory does have selenium within it. How do I point my python distribution to this so I can use the package?