-
Notifications
You must be signed in to change notification settings - Fork 459
Installation FAQ
There may be different root causes for the problem above. Please find the subsection that applies to you.
This may be caused by a faulty hostname configuration. You can verify if that's the case by opening the macOS Terminal application:
$ scutil --get HostName
If it prints "HostName: not set" or it prints a hostname made of only numbers or invalid characters, then the issue is confirmed. To address this, you can set the Hostname to _
and let macOS fill it in for you:
$ sudo scutil --set HostName _
Alternatively, you can set your hostname explicitly:
$ sudo scutil --set HostName my-machine
Prompt your password and you should be good to go.
Some VPNs, such as Cisco Any Connect, may block or disable the loopback address. Therefore, you must configure Desktop to use longnames.
-
If you are using Livebook Desktop on Windows, create a file named ".livebookdesktop.bat" in your User Profile folder with the following contents:
set LIVEBOOK_DISTRIBUTION=name set [email protected]
-
If you are using Livebook Desktop on macOS, create a file named ".livebookdesktop.sh" at your User Home with the following contents:
export LIVEBOOK_DISTRIBUTION=name export [email protected]
-
If you are using Livebook's CLI or from source, consider using longnames:
$ livebook server --name [email protected] $ elixir --name [email protected] -S mix phx.server