-
Notifications
You must be signed in to change notification settings - Fork 184
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No module named 'OpenPose.Release.pyopenpose' #17
Comments
Received the same error. Did you find a solution? |
I found same error, but similar reason. Recompile openpose, problem solved. Hope this helps. |
The same problem I met too. The solution is replace the document "pyopenpose.cp36-win_amd64" which is in the \OpenPose\Release with your own "pyopenpose" file. For example, I use "pyopenpose.cp39-win_amd64" which was generated in the openpose project before. '39'means python3.9. So then make a env with python3.9 not python3.6 said here for this project. Do not pip install -r requirments.txt if the python version is not 3.6. Delete the version information in the requirements.txt ,and then pip install it. It definitely will work. You may meet the error about opWrapper.emplaceAndPop([Datum]). The solution is add the code vectorDatum = op.VectorDatum([datum]) and then modify the def getVideoStream in app_helper.py ,add vectorDatum as a input parameter. That's all! |
|
Sorry I don't know how to paste pictures here, so if you haven't solved the problem, sending email to me directly is all right. My email is "wills&&sunbowtec.com" . replace && with @.
Sorry I don't know how to paste pictures here, so if you haven't solved the problem, sending email to me directly is all right. My email is "wills&&sunbowtec.com" . replace && with @. |
One solution is to compile from source the OpenPose project and copy the appropriate file from below for your specific python version. Windows: |
I also encountered a similar problem, following your steps did not work, displaying the same error message. I have already practiced with you through email. |
When i run the project, i meet the
The text was updated successfully, but these errors were encountered: