---
url: /en/workspaces/question.md
---
## How to Install a Specific Version of code-server

Custom development environments typically install code-server to support WebIDE. The following method installs the latest version of code-server:

```shell
curl -fsSL https://code-server.dev/install.sh | sh
```

Since code-server comes from the community, sometimes certain versions may have bugs that prevent WebIDE from functioning properly.
In such cases, you can install a specific version as a temporary solution. Once the issue is resolved, you can install the latest version again.

Use the following command to install a specific version:

```shell
# Install a specific version, for example 4.100.3
curl -fsSL https://code-server.dev/install.sh | sh -s -- --version 4.100.3
```
