Open3D tutorial error
- Dominant language
- C++
- Stars
- 14k
- Forks
- 2.6k
- Avg merge
- 5d 18h
- Merged PRs (30d)
- 6
Description
### Checklist
- [X] I have searched for [similar issues](https://github.com/isl-org/Open3D/issues).
- [X] For Python issues, I have tested with the [latest development wheel](http://www.open3d.org/docs/latest/getting_started.html#development-version-pip).
- [X] I have checked the [release documentation](http://www.open3d.org/docs/release/) and the [latest documentation](http://www.open3d.org/docs/latest/) (for `master` branch).
### My Question
Hello. I'm an Open3D beginner. I'm not used to development either. My question may be low-level, but I would appreciate it if there was someone who could answer me.
After installing Open3D, I try it.
'
python3 -c "import open3d as o3d; print(o3d.__version__)"
python3 -c "import open3d as o3d; \
mesh = o3d.geometry.TriangleMesh.create_sphere(); \
mesh.compute_vertex_normals(); \
o3d.visualization.draw(mesh, raw_mode=True)"
open3d example visualization/draw`
but, I got these error messages.
jinwoo@jinwoo-MS-7D17:~/workspace$ python3 -c "import open3d as o3d; print(o3d.__version__)"
0.13.0
jinwoo@jinwoo-MS-7D17:~/workspace$ python3 -c "import open3d as o3d; \
> mesh = o3d.geometry.TriangleMesh.create_sphere(); \
> mesh.compute_vertex_normals(); \
> o3d.visualization.draw(mesh, raw_mode=True)"
Traceback (most recent call last):
File "", line 1, in
TypeError: draw() got an unexpected keyword argument 'raw_mode'
jinwoo@jinwoo-MS-7D17:~/workspace$ open3d example visualization/draw
open3d: command not found
How can I fix these error?
ubuntu 20.04
python 3.8.10
cmake 3.23.2
Thank you for read my question.
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.