Ubuntu20.04のPython3にOpen3dをインストール
2023/08月現在のUbuntu20.04環境のpython3はVer3.8ですがこの環境にOpen3dをpipでインストールすると
”ERROR: Cannot uninstall 'PyYAML'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.”
要するにPyYAMLがディストリビューション側でインストールされているのでuninstallできないよと言っている。
pip list でPyYAMLのバージョンを調べてみると5.3.1がインストールされておりOpen3dの最新バージョンでは6.0.1が要求される
なのでOpen3dのバージョンでPyYAML5.3.1を使っているバージョンをインストールすればよいので
pip install open3d==0.11.2
でインストールできる。