video2bvh icon indicating copy to clipboard operation
video2bvh copied to clipboard

NotImplementedError: cannot instantiate 'PosixPath' on your system

Open CyWang-Jade opened this issue 3 years ago • 8 comments

Hello, after installing openpose I am not able to solve how to removeNotImplementedError: cannot instantiate 'PosixPath' on your system? please help!

CyWang-Jade avatar Oct 10 '21 12:10 CyWang-Jade

I had the same problem on Windows 11 and got around the problem by adding the following lines to pose_estimator_3d\model\factory.py

import pathlib
temp = pathlib.PosixPath
pathlib.PosixPath = pathlib.WindowsPath

hollowdrutt avatar Oct 11 '21 19:10 hollowdrutt

I had the same problem on Windows 11 and got around the problem by adding the following lines to pose_estimator_3d\model\factory.py

import pathlib
temp = pathlib.PosixPath
pathlib.PosixPath = pathlib.WindowsPath

thank you very much.

CyWang-Jade avatar Oct 12 '21 01:10 CyWang-Jade

import pathlib
temp = pathlib.PosixPath
pathlib.PosixPath = pathlib.WindowsPath

Hey you random internet person from months ago. Thank you ❤️

kjerk avatar Jul 11 '22 01:07 kjerk

Thanks for raising the issue.. I faced the same now and got it solved...

lavanyayangala avatar May 08 '23 07:05 lavanyayangala

that's very helpful!

mil-lu avatar May 27 '23 02:05 mil-lu

can help me and tell at which lines did you add\replaced them

abdulrhman-arrikh avatar Oct 31 '23 12:10 abdulrhman-arrikh

can help me and tell at which lines did you add\replaced them

`import pathlib

temp = pathlib.PosixPath

pathlib.PosixPath = pathlib.WindowsPath`

you can check with these lines @abdulrhman-arrikh

lavanyayangala avatar Oct 31 '23 16:10 lavanyayangala

@hollowdrutt Hi, I am working on this project on windows 11. Can you kindly tell me what nvidia gpu can afford in this project? 6G rtx3060 is enough?

poincarelee avatar Dec 02 '23 08:12 poincarelee