浏览代码

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 7 月之前
父节点
当前提交
6fcadd94ba
共有 1 个文件被更改,包括 16 次插入1 次删除
  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
 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
 These commands install the `taipy` package in the Python environment with all its
 dependencies.
 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
 ## Installing from GitHub
 
 
 The development version of Taipy is updated daily with changes from the Taipy R&D and external
 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
 > repeatedly, you will no longer have to reinstall Taipy GUI before you
 > try your code again.
 > try your code again.
 
 
-
 ## Running the tests
 ## Running the tests
 
 
 To run the tests on the package, you need to install the required development packages.
 To run the tests on the package, you need to install the required development packages.