Forrest logo
back to the jupyter tool

jupyter:tldr:4674c

jupyter: Start a server on a specific port.
$ jupyter notebook --port=${port}
try on your machine

The command "jupyter notebook --port=${port}" is used to start Jupyter Notebook with a specified port number.

  • "jupyter notebook" is the command to start the Jupyter Notebook application.
  • "--port" is an option used to specify the port number on which the Jupyter Notebook server should run.
  • "${port}" is a placeholder that should be replaced with the desired port number when executing the command.

For example, if you want to start Jupyter Notebook on port 8888, you would replace "${port}" with "8888" and execute the command as: "jupyter notebook --port=8888".

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the jupyter tool