123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- .. _terminal:
- ==========
- Terminals
- ==========
- JupyterLab terminals provide full support for system shells (bash, tsch,
- etc.) on Mac/Linux and PowerShell on Windows. You can run anything in
- your system shell with a terminal, including programs such as vim or
- emacs. The terminals run on the system where the Jupyter server is
- running, with the privileges of your user. Thus, if JupyterLab is
- installed on your local machine, the JupyterLab terminals will run
- there.
- .. image:: images/terminal_layout.png
- :align: center
- :class: jp-screenshot
- .. _open-terminal:
- To open a new terminal, click the ``+`` button in the file browser and
- select the terminal in the new Launcher tab:
- .. raw:: html
- <div class="jp-youtube-video">
- <iframe src="https://www.youtube-nocookie.com/embed/ynMjz1tiq9o?rel=0&showinfo=0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
- </div>
- .. _close-terminal:
- Closing a terminal tab will leave it running on the server, but you can
- re-open it using the Running tab in the left sidebar:
- .. raw:: html
- <div class="jp-youtube-video">
- <iframe src="https://www.youtube-nocookie.com/embed/gDM5lwU6Dmo?rel=0&showinfo=0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
- </div>
- .. _Copy/Paste:
- ~~~~~~~~~~~~
- Copy/Paste
- ~~~~~~~~~~~~
- For both Windows and Mac users, press ``shift`` + ``right-click`` to get to the right-click menu from inside Jupyterlab terminal. Or by using shortcut keys as follows:
- * **For Mac users:**
- **Copy** : ``Cmd`` + ``c``
- **Paste**: ``Cmd`` + ``v``
- * **For Windows users (Power shell):**
- **Copy** : ``Ctrl`` + ``Insert``
- **Paste** : ``Shift`` + ``Insert``
|