install.md 8.3 KB
Newer Older
1 2
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
A
Anmol Sethi 已提交
3 4
# Install

J
Joe Previte 已提交
5 6 7 8 9 10 11
- [Upgrading](#upgrading)
- [install.sh](#installsh)
  - [Flags](#flags)
  - [Detection Reference](#detection-reference)
- [Debian, Ubuntu](#debian-ubuntu)
- [Fedora, CentOS, RHEL, SUSE](#fedora-centos-rhel-suse)
- [Arch Linux](#arch-linux)
J
Joe Previte 已提交
12
- [Termux](#termux)
J
Joe Previte 已提交
13 14 15 16 17
- [yarn, npm](#yarn-npm)
- [macOS](#macos)
- [Standalone Releases](#standalone-releases)
- [Docker](#docker)
- [helm](#helm)
B
Ben Potter 已提交
18
- [Cloud Providers](#cloud-providers)
19 20 21

<!-- END doctoc generated TOC please keep comment here to allow auto update -->

A
Anmol Sethi 已提交
22 23 24
This document demonstrates how to install `code-server` on
various distros and operating systems.

25 26 27 28 29 30
## Upgrading

When upgrading you can just install the new version over the old one. code-server
maintains all user data in `~/.local/share/code-server` so that it is preserved in between
installations.

A
Anmol Sethi 已提交
31 32
## install.sh

33
We have a [script](../install.sh) to install code-server for Linux, macOS and FreeBSD.
A
Anmol Sethi 已提交
34

A
Anmol Sethi 已提交
35
It tries to use the system package manager if possible.
A
Anmol Sethi 已提交
36 37 38 39

First run to print out the install process:

```bash
40
curl -fsSL https://code-server.dev/install.sh | sh -s -- --dry-run
A
Anmol Sethi 已提交
41 42 43 44 45 46 47 48
```

Now to actually install:

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

A
Anmol Sethi 已提交
49 50
The script will print out how to run and start using code-server.

A
Anmol Sethi 已提交
51 52 53 54
If you believe an install script used with `curl | sh` is insecure, please give
[this wonderful blogpost](https://sandstorm.io/news/2015-09-24-is-curl-bash-insecure-pgp-verified-install) by
[sandstorm.io](https://sandstorm.io) a read.

A
Anmol Sethi 已提交
55
If you'd still prefer manual installation despite the below [detection reference](#detection-reference) and `--dry-run`
56
then continue on for docs on manual installation. The [`install.sh`](../install.sh) script runs the _exact_ same
A
Anmol Sethi 已提交
57 58 59 60 61
commands presented in the rest of this document.

### Flags

- `--dry-run` to echo the commands for the install process without running them.
A
Anmol Sethi 已提交
62
- `--method` to choose the installation method.
63 64 65
  - `--method=detect` to detect the package manager but fallback to `--method=standalone`.
  - `--method=standalone` to install a standalone release archive into `~/.local`.
- `--prefix=/usr/local` to install a standalone release archive system wide.
A
Anmol Sethi 已提交
66 67 68
- `--version=X.X.X` to install version `X.X.X` instead of latest.
- `--help` to see full usage docs.

A
Anmol Sethi 已提交
69
### Detection Reference
A
Anmol Sethi 已提交
70

A
Anmol Sethi 已提交
71 72
- For Debian, Ubuntu and Raspbian it will install the latest deb package.
- For Fedora, CentOS, RHEL and openSUSE it will install the latest rpm package.
A
Anmol Sethi 已提交
73
- For Arch Linux it will install the AUR package.
74
- For any unrecognized Linux operating system it will install the latest standalone release into `~/.local`.
75

A
Anmol Sethi 已提交
76
  - Add `~/.local/bin` to your `$PATH` to run code-server.
A
Anmol Sethi 已提交
77 78

- For macOS it will install the Homebrew package.
79

80
  - If Homebrew is not installed it will install the latest standalone release into `~/.local`.
A
Anmol Sethi 已提交
81
  - Add `~/.local/bin` to your `$PATH` to run code-server.
A
Anmol Sethi 已提交
82

83 84
- For FreeBSD, it will install the [npm package](#yarn-npm) with `yarn` or `npm`.

A
Anmol Sethi 已提交
85
- If ran on an architecture with no releases, it will install the [npm package](#yarn-npm) with `yarn` or `npm`.
86
  - We only have releases for amd64 and arm64 presently.
A
Anmol Sethi 已提交
87
  - The [npm package](#yarn-npm) builds the native modules on postinstall.
A
Anmol Sethi 已提交
88

A
Anmol Sethi 已提交
89 90 91
## Debian, Ubuntu

```bash
92 93
curl -fOL https://github.com/cdr/code-server/releases/download/v3.9.2/code-server_3.9.2_amd64.deb
sudo dpkg -i code-server_3.9.2_amd64.deb
A
Anmol Sethi 已提交
94
sudo systemctl enable --now code-server@$USER
A
Anmol Sethi 已提交
95 96 97
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
```

98
## Fedora, CentOS, RHEL, SUSE
A
Anmol Sethi 已提交
99 100

```bash
101 102
curl -fOL https://github.com/cdr/code-server/releases/download/v3.9.2/code-server-3.9.2-amd64.rpm
sudo rpm -i code-server-3.9.2-amd64.rpm
A
Anmol Sethi 已提交
103
sudo systemctl enable --now code-server@$USER
A
Anmol Sethi 已提交
104 105 106 107 108 109 110 111
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
```

## Arch Linux

```bash
# Installs code-server from the AUR using yay.
yay -S code-server
A
Anmol Sethi 已提交
112
sudo systemctl enable --now code-server@$USER
A
Anmol Sethi 已提交
113 114 115 116 117 118 119 120
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
```

```bash
# Installs code-server from the AUR with plain makepkg.
git clone https://aur.archlinux.org/code-server.git
cd code-server
makepkg -si
A
Anmol Sethi 已提交
121
sudo systemctl enable --now code-server@$USER
A
Anmol Sethi 已提交
122 123 124
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
```

J
Joe Previte 已提交
125 126 127 128 129 130 131 132 133 134 135 136
## Termux

Termux is an Android terminal application and Linux environment, which can also run code-server from your phone.

1. Install Termux from the [Google Play Store](https://play.google.com/store/apps/details?id=com.termux&hl=en_US&gl=US)
2. Make sure it's up-to-date by running `apt update && apt upgrade`
3. Install required packages: `apt install build-essential python git nodejs yarn`
4. Install code-server: `yarn global add code-server`
5. Run code-server: `code-server` and navigate to localhost:8080 in your browser

To upgrade run: `yarn global upgrade code-server --latest`

A
Anmol Sethi 已提交
137 138
## yarn, npm

A
Anmol Sethi 已提交
139
We recommend installing with `yarn` or `npm` when:
140

A
Anmol Sethi 已提交
141
1. You aren't on `amd64` or `arm64`.
A
v3.4.1  
Anmol Sethi 已提交
142
2. If you're on Linux with glibc < v2.17 or glibcxx < v3.4.18
B
Ben 已提交
143
3. You're running Alpine Linux. See [#1430](https://github.com/cdr/code-server/issues/1430#issuecomment-629883198)
A
Anmol Sethi 已提交
144 145

**note:** Installing via `yarn` or `npm` builds native modules on install and so requires C dependencies.
146
See [./npm.md](./npm.md) for installing these dependencies.
A
Anmol Sethi 已提交
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164

You will need at least node v12 installed. See [#1633](https://github.com/cdr/code-server/issues/1633).

```bash
yarn global add code-server
# Or: npm install -g code-server
code-server
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
```

## macOS

```bash
brew install code-server
brew services start code-server
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
```

165
## Standalone Releases
A
Anmol Sethi 已提交
166 167

We publish self contained `.tar.gz` archives for every release on [github](https://github.com/cdr/code-server/releases).
A
Anmol Sethi 已提交
168
They bundle the node binary and `node_modules`.
A
Anmol Sethi 已提交
169

A
Fix CI  
Anmol Sethi 已提交
170
These are created from the [npm package](#yarn-npm) and the rest of the releases are created from these.
A
v3.4.1  
Anmol Sethi 已提交
171
Only requirement is glibc >= 2.17 && glibcxx >= v3.4.18 on Linux and for macOS there is no minimum system requirement.
A
Fix CI  
Anmol Sethi 已提交
172

A
Anmol Sethi 已提交
173 174 175 176
1. Download the latest release archive for your system from [github](https://github.com/cdr/code-server/releases).
2. Unpack the release.
3. You can run code-server by executing `./bin/code-server`.

A
Anmol Sethi 已提交
177 178
You can add the code-server `bin` directory to your `$PATH` to easily execute `code-server`
without the full path every time.
A
Anmol Sethi 已提交
179

180
Here is an example script for installing and using a standalone `code-server` release on Linux:
A
Anmol Sethi 已提交
181 182

```bash
183
mkdir -p ~/.local/lib ~/.local/bin
184
curl -fL https://github.com/cdr/code-server/releases/download/v3.9.2/code-server-3.9.2-linux-amd64.tar.gz \
185
  | tar -C ~/.local/lib -xz
186 187
mv ~/.local/lib/code-server-3.9.2-linux-amd64 ~/.local/lib/code-server-3.9.2
ln -s ~/.local/lib/code-server-3.9.2/bin/code-server ~/.local/bin/code-server
188
PATH="~/.local/bin:$PATH"
A
Anmol Sethi 已提交
189 190 191
code-server
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
```
192 193 194

## Docker

A
Anmol Sethi 已提交
195 196 197 198 199
```bash
# This will start a code-server container and expose it at http://127.0.0.1:8080.
# It will also mount your current directory into the container as `/home/coder/project`
# and forward your UID/GID so that all file system operations occur as your user outside
# the container.
200 201 202 203 204
#
# Your $HOME/.config is mounted at $HOME/.config within the container to ensure you can
# easily access/modify your code-server config in $HOME/.config/code-server/config.json
# outside the container.
mkdir -p ~/.config
A
Anmol Sethi 已提交
205
docker run -it --name code-server -p 127.0.0.1:8080:8080 \
206
  -v "$HOME/.config:/home/coder/.config" \
A
Anmol Sethi 已提交
207 208
  -v "$PWD:/home/coder/project" \
  -u "$(id -u):$(id -g)" \
A
Anmol Sethi 已提交
209
  -e "DOCKER_USER=$USER" \
A
Anmol Sethi 已提交
210 211 212
  codercom/code-server:latest
```

213 214
Our official image supports `amd64` and `arm64`.

A
Anmol Sethi 已提交
215
For `arm32` support there is a popular community maintained alternative:
216 217

https://hub.docker.com/r/linuxserver/code-server
A
Anmol Sethi 已提交
218 219 220 221

## helm

See [the chart](../ci/helm-chart).
B
Ben 已提交
222

B
Ben Potter 已提交
223
## Cloud Providers
B
Ben 已提交
224

B
Ben Potter 已提交
225
We maintain one-click apps and install scripts for different cloud providers such as DigitalOcean, Railway, Heroku, Azure, etc. Check out the repository:
B
Ben 已提交
226

B
Ben Potter 已提交
227
https://github.com/cdr/deploy-code-server