LoginSignup
0
1

Ubuntu20.04LTSのpython3にOpen3Dをインストール

Posted at

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
でインストールできる。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1