Explorar o código

Update INSTALLATION.md (#1871)

* Update INSTALLATION.md

1. Added a note about using venv for virtual environments.

2. Updated the Node.js version requirement to the latest LTS 
    version.

3. Added a section for installing specific versions of Taipy.

4. Clarified the build process for JavaScript bundles.

* Update INSTALLATION.md

Co-authored-by: Đỗ Trường Giang <dtr.giang.1299@gmail.com>

* Update INSTALLATION.md

Co-authored-by: Đỗ Trường Giang <dtr.giang.1299@gmail.com>

---------

Co-authored-by: Đỗ Trường Giang <dtr.giang.1299@gmail.com>
Dhruv Kadam hai 7 meses
pai
achega
6fcadd94ba
Modificáronse 1 ficheiros con 16 adicións e 1 borrados
  1. 16 1
      INSTALLATION.md

+ 16 - 1
INSTALLATION.md

@@ -22,9 +22,25 @@ If you are running in a virtual environment, you will have to issue the command:
 pipenv install taipy
 ```
 
+Alternatively, you can use `venv` to create a virtual environment:
+```bash
+python -m venv myenv
+source myenv/bin/activate  # On Windows use `myenv\Scripts\activate`
+pip install taipy
+```
+
 These commands install the `taipy` package in the Python environment with all its
 dependencies.
 
+## Installing a Specific Version from PyPI
+
+To install a specific version of Taipy, use the following command:
+```bash
+pip install taipy==<version>
+```
+Replace `<version>` with a specific version number of Taipy.
+The list of all released Taipy versions can be found [here](https://pypi.org/project/taipy/#history).
+
 ## Installing from GitHub
 
 The development version of Taipy is updated daily with changes from the Taipy R&D and external
@@ -121,7 +137,6 @@ TypeScript code from your debugger.
 > repeatedly, you will no longer have to reinstall Taipy GUI before you
 > try your code again.
 
-
 ## Running the tests
 
 To run the tests on the package, you need to install the required development packages.