I'm trying to access data from Hive in a iPython Notebook. So I run
pip3 install PyHive
This returns
Requirement already satisfied: PyHive in /usr/local/lib/python3.5/site-packages
But then when I run the following import
from pyhive import hive
I get the following error message
ImportError Traceback (most recent call last)
<ipython-input-4-747088b97eb4> in <module>()
----> 1 from pyhive import hive
ImportError: No module named 'pyhive'
Why can't I access pyhive when it's already installed.