Skip to content

Commit

Permalink
Update INSTALLATION.md (Avaiga#1871)
Browse files Browse the repository at this point in the history
* 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 <[email protected]>

* Update INSTALLATION.md

Co-authored-by: Đỗ Trường Giang <[email protected]>

---------

Co-authored-by: Đỗ Trường Giang <[email protected]>
  • Loading branch information
DhruvKadam-git and trgiangdo authored Oct 4, 2024
1 parent b68ae3a commit 6fcadd9
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion INSTALLATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit 6fcadd9

Please sign in to comment.