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: .github/ISSUE_TEMPLATE/bug-report.yml
+1-1
Original file line number
Diff line number
Diff line change
@@ -57,7 +57,7 @@ body:
57
57
id: logs
58
58
attributes:
59
59
label: Logs
60
-
description: Run code-server with the --verbose flag and then paste any relevant logs from the server, from the browser console and/or the browser network tab. For issues with installation, include installation logs (i.e. output of `yarn global add code-server`).
60
+
description: Run code-server with the --verbose flag and then paste any relevant logs from the server, from the browser console and/or the browser network tab. For issues with installation, include installation logs (i.e. output of `npm install -g code-server`).
@@ -228,14 +227,13 @@ You can install code-server using the [Helm package manager](https://coder.com/d
228
227
229
228
## Windows
230
229
231
-
We currently [do not publish Windows releases](https://github.com/coder/code-server/issues/1397). We recommend installing code-server onto Windows with [`yarn` or `npm`](#yarn-npm).
230
+
We currently [do not publish Windows releases](https://github.com/coder/code-server/issues/1397). We recommend installing code-server onto Windows with [`npm`](#npm).
232
231
233
232
> Note: You will also need to [build coder/cloud-agent manually](https://github.com/coder/cloud-agent/issues/17) if you would like to use `code-server --link` on Windows.
234
233
235
234
## Raspberry Pi
236
235
237
-
We recommend installing code-server onto Raspberry Pi with [`yarn` or
238
-
`npm`](#yarn-npm).
236
+
We recommend installing code-server onto Raspberry Pi with [`npm`](#npm).
@@ -85,8 +90,7 @@ Installing code-server requires all of the [prerequisites for VS Code developmen
85
90
Next, install code-server with:
86
91
87
92
```bash
88
-
yarn global add code-server
89
-
# Or: npm install -g code-server
93
+
npm install -g code-server
90
94
code-server
91
95
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
92
96
```
@@ -96,8 +100,7 @@ A `postinstall.sh` script will attempt to run. Select your terminal (e.g., Git b
96
100
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 command:
97
101
98
102
```shell
99
-
yarn global bin
100
-
# Or: npm config get prefix
103
+
npm config get prefix
101
104
```
102
105
103
106
For help and additional troubleshooting, see [#1397](https://github.com/coder/code-server/issues/1397).
@@ -107,8 +110,7 @@ For help and additional troubleshooting, see [#1397](https://github.com/coder/co
107
110
After adding the dependencies for your OS, install the code-server package globally:
108
111
109
112
```bash
110
-
yarn global add code-server
111
-
# Or: npm install -g code-server
113
+
npm install -g code-server
112
114
code-server
113
115
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
0 commit comments