Hi,
I am currently building & using arago-base-tisdk-image-k2e-evm.tar.xz(45MB) over NFS,
and notice that I am able to launch python on target, but not able to import
some libraries like socket & datetime (which are imported on standard python)
>>> import socket
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named socket
>>> import datetime
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named datetime
But, when I used tisdk-server-rootfs-image-k2e-evm-20200604015534.rootfs.tar.xz(351MB) over NFS,
to my surprise above errors disappeared. But this file seems like a server runtime apps
that runs lot many applications than we need. 45MB vs 351MB.
1. What is the difference between these File system images, how do we know what packages/linux apps
being included in base vs server-rootfs images ?
2. How to get complete support of all standard python modules included in arago-base-tisdk-image-k2e-evm image ?
we expect it to work the way we have it working on PC.
3. arago-base-tisdk-k2e does not include python3, how to get it include in target file system ?
4. We also like to include pySerial package on our target, so we can use it
>>> import serial
what is the procedure to get pySerial package included on target python interpreter ?
Thanks & Appreciate all your help.