Reading excel file in ACP using scripting
Josef Behal
Member Posts: 22
**
Comments
-
Hi @Josef Behal , thanks for creating a new post. Please refer to this page of the ACP documentation:
ACP is delivered with a frozen Python, the Python environment cannot be modified with standard modules such as pip. Nevertheless, it is possible to import and use Python modules within ACP which are not delivered with the installation (matplotlib, for example). You can do this by creating a virtual Python environment (VENV) and adding this environment to the ACP Python path.
1 -
By adding you mean extendin sys.path property by the path leading to venv with my custom library right? Something like that worked for me.
Thank you for an advice.
1 -
Yes exactly. Glad it worked!
0