On a recent install of HDP on centos I had %pyspark repeatedly report an error on
import offline
err msg was I had not installed the plotly (which I had done using sudo pip install plotly )
On double checking it turns out I needed to use the following on the command line to install the modules needed so zeppelin picked it up properly:
sudo python -m pip install plotly numpy pandas scipy matplotlib IPython cufflinks
Now it's all working. All good.
May I suggest you update the readme with a little note for users if they get that error? (I spent ages hunting around for the issue.)
thanks for such a super useful package btw!
On a recent install of HDP on centos I had %pyspark repeatedly report an error on
On double checking it turns out I needed to use the following on the command line to install the modules needed so zeppelin picked it up properly:
May I suggest you update the readme with a little note for users if they get that error? (I spent ages hunting around for the issue.)
thanks for such a super useful package btw!