Closed ardianumam closed 12 months ago
pip install pytorch3d
is not a valid command to install pytorch3d on Linux. Please follow the instructions in INSTALL.md.
Hi,
I install pytorch3d on Ubuntu 20.04 machine via
pip install pytorch3d
, with CPU only and Python 3.9.15. The installation is successful. However, when I callpytorch3d.ops.sample_farthest_points
, it gets me errorError 'pytorch3d' has no attribute 'ops'
. Is the any direction to solve this?Thanks, Ardian
I had the same problem, and i find the following code is useful.
import pytorch3d.ops as ops
ops.sample_farthest_points()
Hi,
I install pytorch3d on Ubuntu 20.04 machine via
pip install pytorch3d
, with CPU only and Python 3.9.15. The installation is successful. However, when I callpytorch3d.ops.sample_farthest_points
, it gets me errorError 'pytorch3d' has no attribute 'ops'
. Is the any direction to solve this?Thanks, Ardian