From b21daf99ed04bfaae13560b253b21bf50e9cdb56 Mon Sep 17 00:00:00 2001 From: Saurabh Kumar <151380951+kmr-srbh@users.noreply.github.com> Date: Sat, 17 Feb 2024 11:37:57 +0530 Subject: [PATCH] Incorporated suggestions from #2537 Moved global package installations to conda environment. --- doc/src/installation.md | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/doc/src/installation.md b/doc/src/installation.md index e9db50cf925..bc02241cab4 100644 --- a/doc/src/installation.md +++ b/doc/src/installation.md @@ -12,16 +12,10 @@ Follow the steps below to install and run LPython on Linux, Windows or macOS. - ### Set up your system - Linux - - Make sure you have `g++` and `cmake` installed. If not, install them using the below command: + - Run the following command to install some global build dependencies: ```bash - sudo apt-get install g++ cmake - ``` - - - Run the following command to install the build dependencies: - - ```bash - sudo apt-get install binutils-dev build-essential zlib1g-dev bison re2c flex + sudo apt-get install build-essential binutils-dev clang zlib1g-dev ``` - Windows - Download and install [Microsoft Visual Studio Community](https://visualstudio.microsoft.com/downloads/) for free.