summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorFrancesco Borzì <borzifrancesco@gmail.com>2021-03-03 18:34:59 +0100
committerGitHub <noreply@github.com>2021-03-03 18:34:59 +0100
commitd56b8cc99b1029b02cd8d542324b1736991a6c8e (patch)
tree3c2c6dfcd1b47a484a078f891b67d884dcfd6b58 /docs
parentc0e88545731c50a0f849d19b0fb3563513276cf9 (diff)
downloadwiki-d56b8cc99b1029b02cd8d542324b1736991a6c8e.tar.gz
wiki-d56b8cc99b1029b02cd8d542324b1736991a6c8e.tar.bz2
wiki-d56b8cc99b1029b02cd8d542324b1736991a6c8e.zip
fix(requirements): ubuntu 18.04 needs latest gcc (#404)
Diffstat (limited to 'docs')
-rw-r--r--docs/Requirements.md11
1 files changed, 6 insertions, 5 deletions
diff --git a/docs/Requirements.md b/docs/Requirements.md
index be729ba..fc63ba0 100644
--- a/docs/Requirements.md
+++ b/docs/Requirements.md
@@ -14,13 +14,14 @@ Remember that if you are using the `root` user, it is not necessary to use `sudo
To configure MySQL in Ubuntu 18.04 and similar (set `root` password and other settings) read [this guide](https://www.digitalocean.com/community/tutorials/how-to-install-mysql-on-ubuntu-18-04).
-**Note:** If you add the option `-y` and at the end of the list, it will start installing them without the need for you to confirm.
-
-**Example:**
+**Note**: in older versions of Ubuntu like **18.04** you need to install gcc 10:
-```sh
-apt-get update && apt-get install git cmake make gcc g++ clang libmysqlclient-dev libssl-dev libbz2-dev libreadline-dev libncurses-dev mysql-server libace-6.* libace-dev -y
```
+sudo add-apt-repository ppa:ubuntu-toolchain-r/test
+sudo apt-get update
+sudo apt install gcc-10 g++-10
+```
+
---