You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/access/vscode.md
+7-6Lines changed: 7 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ After downloading, copy the `code` executable to a location in your PATH, so tha
48
48
export PATH=$HOME/.local/$(uname -m)/bin:$PATH
49
49
```
50
50
The `uname -m` command will print `aarch64` or `x86_64`, according to the microarchitecture of the node it is run on.
51
-
51
+
52
52
Then create the path, and copy the `code` executable to the architecture-specific path:
53
53
```
54
54
mkdir -p $HOME/.local/$(uname -m)/bin
@@ -157,18 +157,21 @@ If you plan to do computation using your VSCode, then you should first allocate
157
157
158
158
### Using with containers
159
159
160
-
This will use CSCS's custom **Container Engine** which can easily pull a container from a registry like DockerHub. Same setup process as earlier with GitHub.
160
+
This will use CSCS's **[Container Engine][ref-container-engine]**. Using this workflow, one can pull a container from a registry like DockerHub. Note that this process also requires that you have a GitHub account, with an authentication and authorization step as described earlier.
161
161
162
162
#### TOML File with Image and Mount Paths
163
163
164
164
```toml
165
165
image = "nvcr.io#nvidia/pytorch:24.01-py3"# example of PyTorch NGC image
Ensure that the `code` executable is accessible in the container. Either it can be contained in the image, or one of the mounted folders should contain it.
0 commit comments