@@ -37,9 +37,9 @@ from your local VS Code, connected to your Coder workspace for compute, etc.
37
37
> ` remote.SSH.allowLocalServerDownload ` enabled so the extension will install
38
38
> the VS Code Server on the client first and then copy it over to the Coder
39
39
> workspace via SCP.
40
- >
41
- > For further troubleshooting steps, see [ Troubleshooting hanging or failing
42
- > connections] ( https://code.visualstudio.com/docs/remote/troubleshooting#_troubleshooting-hanging-or-failing-connections )
40
+ >
41
+ > For further troubleshooting steps, see
42
+ > [ Troubleshooting hanging or failing connections] ( https://code.visualstudio.com/docs/remote/troubleshooting#_troubleshooting-hanging-or-failing-connections )
43
43
44
44
![ VS Code Remote Explorer] ( ../assets/workspaces/vscode-remote-ssh-panel.png )
45
45
@@ -328,8 +328,8 @@ for setting up your custom image and configure script.
328
328
329
329
Jupyter Notebook is the original web IDE for creating Notebooks used in data
330
330
science, machine learning and analytics projects. By default, any Coder
331
- workspace with the Jupyter project installed (in ` /usr/local/bin/jupyter ` )
332
- will render the icon to launch Jupyter Notebook.
331
+ workspace with the Jupyter project installed (in ` /usr/local/bin/jupyter ` ) will
332
+ render the icon to launch Jupyter Notebook.
333
333
334
334
![ Jupyter Notework] ( ../assets/workspaces/jupyter-notebook-icon.png )
335
335
@@ -378,8 +378,9 @@ RUN chmod +x jupyter
378
378
USER coder
379
379
```
380
380
381
- Below is an example ` jupyter ` script with the lab arguments. This file must
382
- be located in the same directory as the Dockerfile to be copied during ` docker build `
381
+ Below is an example ` jupyter ` script with the lab arguments. This file must be
382
+ located in the same directory as the Dockerfile to be copied during
383
+ ` docker build `
383
384
384
385
``` sh
385
386
#! /bin/bash
@@ -391,10 +392,10 @@ args=${args/notebook/"lab"}
391
392
jupyter.py ${args}
392
393
```
393
394
394
- The second method to run JupyterLab is with a dev URL and launching
395
- JupyterLab via ` supervisord ` in the ` configure ` script. The benefit of this
396
- approach is it is completely independent of Coder's IDE launching mechanism
397
- and relies only on a generic dev URL.
395
+ The second method to run JupyterLab is with a dev URL and launching JupyterLab
396
+ via ` supervisord ` in the ` configure ` script. The benefit of this approach is it
397
+ is completely independent of Coder's IDE launching mechanism and relies only on
398
+ a generic dev URL.
398
399
399
400
![ JupyterLab as a dev URL] ( ../assets/workspaces/jupyterlab-as-devurl.png )
400
401
@@ -448,7 +449,7 @@ directory=/home/coder
448
449
The third method to access JupyterLab is locally using the SSH port forward
449
450
command: ` ssh -L 8888:localhost:8888 coder.jupyterlab ` . Alternatively, you can
450
451
use the Coder CLI to port forward using: ` coder tunnel jupyterlab 8888 8888 ` .
451
- Now, open a local browser and navigate to ` https://localhost:8888 ` .
452
+ Now, open a local browser and navigate to ` https://localhost:8888 ` .
452
453
453
454
## RStudio
454
455
0 commit comments