summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
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
+```
+
---