There are different ways to install Taipy GUI, depending on how you plan to use it:
- Installing the latest release
- Installing the development version
- Debugging the JavaScript bundle
- Running the tests
Taipy GUI needs your system to have Python 3.8 or above installed.
The easiest way to install Taipy GUI is using pip
Run the command:
pip install taipy-gui
The development version of Taipy GUI is updated daily with changes from the Taipy R&D and external contributors that we praise for their input.
You should also install this version if you want to contribute to the development of Taipy GUI. Here are the steps to follow:
Clone the repository using the following command:
git clone https://github.com/Avaiga/taipy-gui.git
Taipy GUI has some code dealing with the client side of the web applications. This code is written in TypeScript, relies on React components, and is packaged into a JavaScript bundle that is sent to browsers when they connect to all Taipy GUI applications.
This bundle needs to be built before being usable by Taipy GUI.
First you need to install Node.js on your system.
Select the "Recommended For Most Users" version, and follow the instructions for your system.
Select "Automatically install the necessary tools" when asked.
Open a new terminal and run the following commands:
- Install the DOM dependencies
cd gui
cd dom
npm i
- Install the web app dependencies
cd ..
npm i --omit=optional
- Build the web app
npm run build
After a few minutes, this creates the directory src/taipy/gui/webapp
in the root directory of the repository
where the front-end code for Taipy GUI is split into a set of JavaScript bundles.
In a terminal, at the root of the repository, run:
pip install -e . --user
This should install the dev version of Taipy GUI as editable. You are now ready to use it.
If you plan to modify the front-end code and need to debug the TypeScript code, you must use the following:
$ npm run build:dev
instead of the standard build option.
This will preserve the debugging symbols, and you will be able to navigate in the TypeScript code from your debugger.
Note: Web application location
When you are developing front-end code for the Taipy GUI package, it may be cumbersome to have to install the package over and over when you know that all that has changed is the JavaScript bundle that makes the Taipy web app.
By default, the Taipy GUI application searches for the front-end code in the
[taipy-gui-package-dir]/taipy/src/gui/webapp
directory.
You can, however, set the environment variableTAIPY_GUI_WEBAPP_PATH
to the location of your choice, and Taipy GUI will look for the web app in that directory.
If you set this variable to the location where you build the web app repeatedly, you will no longer have to reinstall Taipy GUI before you try your code again.
To run the tests on the package, you need to create a virtual environment and install the development packages:
Here are the commands to issue:
pipenv install --dev
pipenv run pytest