Installation can be done pip install Jupyter. However big list dependency of Jupyter can be avoided by installting ipython kernel module only, if you have Jupyter installed Globally.
-
Install the ipython kernrl
pip install ipykernel -
Create a new kernel for your current virtual environment
python -m ipykernel install --user --name=<promt> -
Launch the notebook with
jupyter notebbokfrom virtual Environment. -
You should now be able to see your kernel in the IPython notebook menu: Kernel -> Change kernel
-
You are ready to go now.
-
In case you want To Remove the kernel .
jupyter kernelspec listthis list down all installed kernal.jupyter kernelspec uninstall <unwanted-kernel>removes the kernal.
- First Run
jupyter notebookfrom project directory of remote server. - Notedown the port number .
- Finally run the following commands from local meachine
ssh -L 8888:localhost:<remote_port> <remote_user_name>@<remote_ip> - Point the browser at
localhost:8888
