jupyter_on_rails
jupyter_on_rails copied to clipboard
Command for Running Remotely
I currently have an EC2 instance that runs the Jupyterlab notebook. These commands are used:
ssh -f -i my.pem ubuntu@IP -L 8000:localhost:8181 -N
nohup jupyter-lab --no-browser --allow-root --port 8181 &
I am able to play with Rails on Jupyterlab. However, I need to replace the existing command such that the rake task used to run the Juyperlab allows me to bring up the notebook on EC2 instance. Please suggest any workaround or fix.