安装Ipython
ipython 只支持python 3.3以上的版本,如果是该版本以上。
使用以下方式安装:
1、安装git
2、取5.x版本
git clone -b 5.x https://github.com/ipython/ipython.git
3、安装:sudo python setup.py install
配置pyspark 带ipython启动
if [[ -z "$PYSPARK_DRIVER_PYTHON" ]]; then
PYSPARK_DRIVER_PYTHON="${PYSPARK_PYTHON:-"python"}"
fi ```
将上边的python改为ipython即可
网友评论