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
You can install code-server via [Helm](https://github.com/cdr/code-server/blob/main/ci/helm-chart/README.md).
238
227
228
+
## Windows
229
+
230
+
We currently do not publish windows releases (see [#1397](https://github.com/cdr/code-server/issues/1397)). We recommend installing code-server onto Raspberry Pi with [`yarn` or
231
+
`npm`](#yarn-npm).
232
+
239
233
## Raspberry Pi
240
234
241
235
We recommend installing code-server onto Raspberry Pi with [`yarn` or
Installing code-server requires all of the [prerequisites for VS Code development](https://github.com/Microsoft/vscode/wiki/How-to-Contribute#prerequisites). When installing the C++ compiler tool chain, we recommend using "Option 2: Visual Studio 2019" for best results.
80
+
81
+
Next, install code-server with:
82
+
83
+
```bash
84
+
yarn global add code-server
85
+
# Or: npm install -g code-server
86
+
code-server
87
+
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
88
+
```
89
+
90
+
A `postinstall.sh` script will attempt to run. Select your terminal (e.g git bash) as the default application for .sh files. If an additional dialog does not appear, run the install command again.
91
+
92
+
If the `code-server` command is not found, you'll need to [add a directory to your PATH](https://www.architectryan.com/2018/03/17/add-to-the-path-on-windows-10/). To find the directory, use the following commands:
93
+
94
+
```shell
95
+
yarn global bin
96
+
# Or: npm config get prefix
97
+
```
98
+
99
+
For help and additional troubleshooting, see [#1397](https://github.com/cdr/code-server/issues/1397).
100
+
101
+
## Installing
102
+
103
+
After adding the dependencies for your OS, install code-server package globally:
104
+
105
+
```bash
106
+
yarn global add code-server
107
+
# Or: npm install -g code-server
108
+
code-server
109
+
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
110
+
```
111
+
112
+
## Troubleshooting
113
+
114
+
If you need further assistance, post on our [GitHub Discussions
0 commit comments