pyspark的交互式终端

文章目录

ptpython

pip install ptpython
export PYSPARK_DRIVER_PYTHON=ptpython
unset PYSPARK_DRIVER_PYTHON_OPTS
export PYSPARK_PYTHON="/root/miniconda3/bin/python"
pyspark --master yarn 

jupyter notebook

pip install jupyter
export PYSPARK_DRIVER_PYTHON="/root/miniconda3/bin/python"
export PYSPARK_PYTHON="/root/miniconda3/bin/python"
export PYSPARK_DRIVER_PYTHON_OPTS="-m jupyter notebook --ip 0.0.0.0 --allow-root --no-browser -y"
pyspark --master yarn 
发布了281 篇原创文章 · 获赞 35 · 访问量 6万+

猜你喜欢

转载自blog.csdn.net/TQCAI666/article/details/103882348