Skip to content

Commit 2844ae2

Browse files
authored
KTOR-7909 docs: update Linux installation instructions in contributing guide (#4529)
- Replace outdated 'libncurses5' packages with 'libncurses-dev' and 'libtinfo-dev' to ensure compatibility with Ubuntu 20.04 and later. - Use 'apt' instead of 'apt-get' for modern best practices. - Simplify installation commands by combining them and removing explicit version numbers.
1 parent 6d26bc9 commit 2844ae2

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,8 @@ system you use for development:
3939
Run the following commands to install `libcurl` and `libncurses`:
4040

4141
```bash
42-
sudo apt-get update
43-
sudo apt-get install libncurses5 libncursesw5 libtinfo5
44-
sudo apt-get install libcurl4-openssl-dev
42+
sudo apt update
43+
sudo apt install libncurses-dev libtinfo-dev libcurl4-openssl-dev
4544
```
4645

4746
**macOS**

0 commit comments

Comments
 (0)