diff --git a/README.md b/README.md index d9c6cf9c475ce3fe7838cbf26611c1382b541ae1..ada2d8df6bc7ff5f6397fbdae592c2622aae1c0b 100644 --- a/README.md +++ b/README.md @@ -23,9 +23,16 @@ For user manual, system design and architecture, engineering blogs, refer to [TD # Building At the moment, TDengine only supports building and running on Linux systems. You can choose to [install from packages](https://www.taosdata.com/en/getting-started/#Install-from-Package) or from the source code. This quick guide is for installation from the source only. -To build TDengine, use [CMake](https://cmake.org/) 2.8 or higher versions in the project directory: +To build TDengine, use [CMake](https://cmake.org/) 2.8 or higher versions in the project directory. +Install CMake for example on Ubuntu: +``` +sudo apt-get install -y cmake build-essential +``` + +Build TDengine: ```cmd + mkdir build && cd build cmake .. && cmake --build . ```