The "python" directory is an embedded copy of the standard Python installation folder, such as
C:\Users\XXX\AppData\Local\Programs\Python\Python314\
The following packages are preinstalled:
    python -m pip install --upgrade pip setuptools wheel numpy
    python -m pip install opencv-python scipy pandas openpyxl imageio pillow requests lxml matplotlib seaborn
    python -m pip install --no-cache-dir --force-reinstall --no-build-isolation jep==4.3.1
The "jep" package is required for integration with Java. For details, see:
https://github.com/ninia/jep
Important: "numpy" must be installed BEFORE "jep" for correct integration between "jep" and "numpy".
The libraries listed in the last line ("opencv-python", "scipy" etc.) are recommended for use with SciChains and may be used in some chains.

BE CAREFUL! 
The command above must install the exact "jep" version matching the version specified in the current pom.xml of scichains-core. 
Installing a different version may break SciChains integration.

If you want, you can install any additional packages: simply run
    python -m pip install <necessary_package>
