first import a few utility methods that we'll use later on
from IPython.display import Image, HTML, display
check PySpark is running
spark
NameError Traceback (most recent call last)
in ()
2 from IPython.display import Image, HTML, display
3 # check PySpark is running
----> 4 spark
NameError: name 'spark' is not defined
I running this file in Anaconda Jupyter. How can i solve this?
first import a few utility methods that we'll use later on
from IPython.display import Image, HTML, display
check PySpark is running
spark
NameError Traceback (most recent call last)