From 6fcadd94ba0d1969f36fdebb65c239ee8e38a2c8 Mon Sep 17 00:00:00 2001 From: Dhruv Kadam <136492453+DhruvKadam-git@users.noreply.github.com> Date: Fri, 4 Oct 2024 16:16:55 +0530 Subject: [PATCH] Update INSTALLATION.md (#1871) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 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 * Update INSTALLATION.md Co-authored-by: Đỗ Trường Giang --------- Co-authored-by: Đỗ Trường Giang --- INSTALLATION.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/INSTALLATION.md b/INSTALLATION.md index b94a6d277b..01beb461e4 100644 --- a/INSTALLATION.md +++ b/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== +``` +Replace `` 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.