我如何确保运行时vagrant up
它会运行/etc/rc.local
以设置 PATHS?rc.local
文件的创建方式如下:
#!/bin/sh -e
export CONDA_DIR=/opt/conda
export PATH=$CONDA_DIR/bin:$PATH
export SPARK_HOME=/usr/local/spark
jupyter notebook --ip=0.0.0.0 --port=8888 --no-browser --notebook-dir='/home/vagrant' &
exit 0
它也没有设置SPARK_HOME
当我手动运行它时它会运行,但是会被挂起jupyter notebook
并且不会退出。