I am using Anaconda python distribution and would like to use selenium . Unfortunately, selenium is not included in the distribution, so I installed it using the recommended one:
pip install -U selenium
The FAQ distribution says this should work fine, but when I try to use it, I get python telling me that it knows nothing 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 has selenium inside it. How do I specify my python distribution so that I can use the package?
source share