Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions INSTALLATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,15 @@ However, if you prefer a direct local installation, instructions follow.
```sh
jupyter lab
```

**NOTE**: If your installation is on macOS you may need to run the following command before starting Jupyter.

```sh
cat supervisor/conf.d/*.conf | grep -oEi '\-\-interfaces=[0-9\.]+' | sed 's/.*\=//' | xargs -L1 sudo ifconfig lo0 alias
```

This adds several aliases to the macOS loopback interface. While these changes do not persist between reboots, you can clean them up by running the following command after you exit the tutorial (this step is optional).

```sh
cat supervisor/conf.d/*.conf | grep -oEi '\-\-interfaces=[0-9\.]+' | sed 's/.*\=//' | xargs -L1 sudo ifconfig lo0 -alias
```