You can install any Python library in the root of your NetCloud OS (NCOS) SDK app folders (e.g. C:\sdk-samples-master\your_app\) and import statements in your Python modules will find the library and import it.
You can use PIP with the -t option to specify the target folder when installing Python libraries. For example:
C:\sdk-samples-master\pip install -t your_app/ {library_name}The "cppython" custom Python environment that is included in NCOS is Python v3.8.4 with some standard libraries removed to reduce size.
Install any missing standard libraries you need from the Python 3.8.4 source code into the root of your app folder as needed.
Python v3.8.4 Source Code is available at https://www.python.org/downloads/release/python-384/