|
@@ -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.
|