/local-jupyterlab

Vagrant-based build for creating a Jupyter Lab instance. Includes ability to dynamically create 3-D plots.

Primary LanguageShell

To create a local, Vagrant-based build of Jupyter Lab:

  1. Install Git, VirtualBox, and Vagrant
  2. Clone this repository
  3. Change into the cloned directory
  4. Start and configure the VM: vagrant up
  5. Log in to the VM: vagrant ssh
  6. Optional, but recommended: Change to the /vagrant directory, which is shared between the VM and the host machine. This way you can save any notebooks without worrying about losing work.
  7. Start the Jupyter server: jupyter lab --port 8000 --ip 0.0.0.0. Note that the --ip flag is important so that your browser on the host machine will talk to the VM.
  8. After the server starts, it will give you a URL like http://127.0.0.1:8000/lab?token=<TOKEN>, which you can copy to a web browser on your host machine.