-
Notifications
You must be signed in to change notification settings - Fork 77
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
module 'utils' has no attribute 'compute_rotation_matrix_from_ortho6d' #53
Comments
+1 |
Works for me with |
Can you specify the issue? |
Hi, The issue here is that source code files listed below have the statement "import utils":
Python version 3.10 and later have a system-wide Python package, called 'utils', that has a higher precedence over any local file instance called utils.py. As a result, all the 6DRepNet files listed above refer the system-wide Python module 'utils' instead of the desired local counterpart. Since the system-wide 'utils' is targeted for totally different purposes and excludes the function compute_rotation_matrix_from_ortho6d(), we see the error message There are at least two workarounds to solve the issue:
In general, please discontinue completing the package installation using the commands "python setup.py install" and/or "pip install -e .". These are not supported in PIP version 24.3.1 and later. A simple alternative way would include the following:
A few references for further information: |
No description provided.
The text was updated successfully, but these errors were encountered: