Jetson Nano - Installing ntpath

I’m trying this [url]https://github.com/ZexinChen/FastPose[/url] FastPose Library on my jetson nano. I have most of the requirements covered as specified in requirements.txt file, but I’m lacking ntpath.

Does anyone know how to install ntpath on the Jetson Nano? Any leads will be very much appreciated.

Hi,

ntpath is an library for Windows paths.
You can use posixpath instead for Nano’s Linux environment.

You can check this page for more information: [url]https://docs.python.org/2/library/os.path.html[/url]
Thanks.