Open3D icon indicating copy to clipboard operation
Open3D copied to clipboard

Summarize the issue and your environments (e.g., "Cannot compile on Ubuntu 20.04 with OpenBLAS")

Open grewe opened this issue 6 months ago • 0 comments

Checklist

Steps to reproduce the issue

using Google Colab environment --have followed getting started using

open3d Version: 0.19.0 numpy Version: 2.2.6 pip Version: 24.1.2

when attempt to import open3d get error:

`-------------------------------------------------------------------------- ImportError Traceback (most recent call last) in <cell line: 0>() ----> 1 import open3d as o3d

18 frames /usr/local/lib/python3.11/dist-packages/numpy/_core/strings.py in 12 from numpy._core.multiarray import _vec_string 13 from numpy._core.overrides import set_module ---> 14 from numpy._core.umath import ( 15 isalpha, 16 isdigit,

ImportError: cannot import name '_center' from 'numpy._core.umath' (/usr/local/lib/python3.11/dist-packages/numpy/_core/umath.py) `

Error message

ImportError Traceback (most recent call last)
in <cell line: 0>()
----> 1 import open3d as o3d

18 frames
/usr/local/lib/python3.11/dist-packages/numpy/_core/strings.py in
12 from numpy._core.multiarray import _vec_string
13 from numpy._core.overrides import set_module
---> 14 from numpy._core.umath import (
15 isalpha,
16 isdigit,

ImportError: cannot import name '_center' from 'numpy._core.umath' (/usr/local/lib/python3.11/dist-packages/numpy/_core/umath.py)

Open3D, Python and System information

- Google Colab with CPU
- Python version: Python 3.11
- Open3D version: output from python: 0.19
- System architecture: Google Colab -CPU?
- Is this a remote workstation?: yes 
- How did you install Open3D?: pip  
- Compiler version (if built from source): NA

Additional information

I have tried to do older version combinations with open3D and numpy and that does not work either. I do not know how to solve this issue.

grewe avatar Jun 03 '25 05:06 grewe