Browse Source

Update INSTALLATION.md (#2049)

* Update INSTALLATION.md
UTSAV SINGHAL 7 months ago
parent
commit
872fb1d52e
1 changed files with 14 additions and 10 deletions
  1. 14 10
      INSTALLATION.md

+ 14 - 10
INSTALLATION.md

@@ -1,23 +1,27 @@
-# Installation
+# Taipy Installation Guide
 
-There are different ways to install Taipy, depending on how you plan to use it.
+Taipy can be installed in various ways depending on your needs. 
 
-If your goal is to look into the code, modify and improve it, go straight
-to the [source installation](#installing-for-development) section.
+If you aim to modify the code or contribute to its development, refer to the 
 
-Taipy needs your system to have Python 3.9 or above installed.
+[source installation](#installing-for-development) section. 
 
-## Installing from PyPI
+Ensure that you have Python 3.9 or above installed on your system.
 
-The easiest way to install Taipy is from the
-[Pypi software repository](https://pypi.org/project/taipy/).
+## Installing Taipy from PyPI
+
+The easiest way to install Taipy is through the 
+
+[PyPI software repository](https://pypi.org/project/taipy/). 
+
+You can do this by running the following command:
 
-Run the command:
 ```bash
 pip install taipy
 ```
 
-If you are running in a virtual environment, you will have to issue the command:
+If you are using a virtual environment, use:
+
 ```bash
 pipenv install taipy
 ```