You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a package named scripts in my python environment. (see scripts )
So import scripts.benchmark_3dmatch
failed as the interpreter believed I was importing from that package instead of from a folder called scripts , but of course there is no benchmark_3dmatch.py in that package.
A solution would be to change lines like import scripts.benchmark_3dmatch
to import .scripts.benchmark_3dmatch
The text was updated successfully, but these errors were encountered:
There is a package named scripts in my python environment. (see scripts )
So
import scripts.benchmark_3dmatch
failed as the interpreter believed I was importing from that package instead of from a folder called scripts , but of course there is no benchmark_3dmatch.py in that package.
A solution would be to change lines like
import scripts.benchmark_3dmatch
to
import .scripts.benchmark_3dmatch
The text was updated successfully, but these errors were encountered: