After Installing Jupyter Locally, I Can't Run Jupyter Notebook
On linux redhat: I tried to install jupyter locally: $ pip install jupyter --user and it seems as everything was installed properly... But - I cannot runt jupyter notebook, nor ~
Solution 1:
Set two variables first whose CMD commands are below:
set PYSPARK_DRIVER_PYTHON_OPTS=notebook
set PYSPARK_DRIVER_PYTHON=ipython
Now run pyspark with command pyspark
, which will open 8888(default) port with jupyter running initiated sparkContext.
Post a Comment for "After Installing Jupyter Locally, I Can't Run Jupyter Notebook"