Skip to content

Connecting using Jupyter URL and token

Kyle Cutler edited this page Mar 13, 2024 · 3 revisions

To set up a Jupyter notebook server and use it with this option, follow the steps below:

  1. Install Jupyter. We recommend installing the free version of Anaconda which comes with Jupyter installed. Alternatively, follow the official instructions to install it.
  2. In the appropriate environment (e.g. in an Anaconda prompt if Anaconda is used), launch the server with the following command (replace the jupyter token with your secure token):
    jupyter notebook --no-browser --NotebookApp.allow_origin='*' --NotebookApp.token='<your-jupyter-token>'
  3. In Data Wrangler, connect using the address of the spawned server. E.g. http://localhost:8888 and in the next step pass in your token. Once configured, this information is cached locally and can automatically be reused for future connections.

More information can be found in the Jupyter extension documentation.

Clone this wiki locally