HephIA python packages
For our various uses, we are developing and maintaining some packages.
We build, maintain and install those packages using a private Artifact Registry. In order to install them, you have to add a configuration file to your local environment. Before, that, make sure your python version is 3.9.2. Then add the pip conf file to your home. The content of this file looks like this. It has the extra index url of our private repository.
[global] extra-index-url = https://{username}:{password}@europe-west1-python.pkg.dev/hephia-product-dev/hephia-packages/simple/
The target file where you have to put this content is
- For linux
$HOME/.pip/pip.conf
- For Windows
%HOME%\pip\pip.ini
Once, you’ve add this file, you can the install your hephia packages using pip.
pip install SIS_utils hephia_api hephia_ds_toolbox hephia_engineering_utils
to update to the latest version add the -U switch to the previous command
pip install -U SIS_utils hephia_api hephia_ds_toolbox hephia_engineering_utils