Before building PYHELLO module, please ensure that SALOME environment is set properly. Assume that SALOME environment is set in env_products.sh script. In order to build and install PYHELLO module, you have to perform several steps:
[bash% ] source env_products.sh [bash% ] mkdir PYHELLO_BUILD [bash% ] cd PYHELLO_BUILD [bash% ] ../PYHELLO1_SRC/build_configure [bash% ] ../PYHELLO1_SRC/configure --prefix=<PYHELLO_module_installation_dir> [bash% ] make [bash% ] make install
The first command creates a build directory for the PYHELLO module. Then next step is to cd to this build directory. From this directory you sequentially invoke build_configure, configure, make and make install commands. On each step, you have to ensure that the operation is finished correctly (no errors raised).
The <PYHELLO_module_installation_dir> variable above defines the destination directory to which the PYHELLO module should be installed. After the last step is finished, the PYHELLO module is built and installed to the <PYHELLO_module_installation_dir> directory.